Code & Deploy
Code
Models
Repos
Sign in
@leroysheep
/
Socializer
Socializer
/
varint.h
Code
Commits
Pulls
CI/CD
81,295
bisect
bisect
jch
maint
master
next
seen
test
todo
h
7 lines
156 Bytes
Copy permalink
Copy
Raw
1
#ifndef VARINT_H
2
#define VARINT_H
3
4
uint8_t
encode_varint
(
uint64_t
,
unsigned
char
*
);
5
uint64_t
decode_varint
(
const
unsigned
char
**
);
6
7
#endif
/* VARINT_H */