diff options
author | Plex <thinkplex@riseup.net> | 2021-10-24 23:33:48 +0200 |
---|---|---|
committer | Plex <thinkplex@riseup.net> | 2021-10-24 23:33:48 +0200 |
commit | d937614705989b9e71c366e5fe61751ba0d1a2eb (patch) | |
tree | e75c19227164e960a8b25044ae9945c1acd3104f /mctypes.h | |
parent | dd1779c4c7581b0b863886371f891d9d545d6b27 (diff) |
readValInt
Diffstat (limited to 'mctypes.h')
-rw-r--r-- | mctypes.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,9 +10,9 @@ typedef struct { typedef struct { varint length; varint id; - char *data;; + char *data; } packet; -int writeVarInt(varint x); +int readVarInt(varint x); varint writeVarInt(unsigned int x); |