mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-07-25 08:14:45 +02:00
14 lines
238 B
C++
14 lines
238 B
C++
#ifndef _UTIL_BITS_VARINT
|
|
#define _UTIL_BITS_VARINT
|
|
|
|
#include "base/basictypes.h"
|
|
|
|
namespace varint {
|
|
|
|
void Encode32(uint32_t value, char **dest);
|
|
uint32_t Decode32(const char **ptr);
|
|
|
|
} // namespace varint
|
|
|
|
#endif // _UTIL_BITS_VARINT
|