You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
668 B
C
25 lines
668 B
C
#include "fmt.h"
|
|
|
|
/* write int in least amount of bytes, return number of bytes */
|
|
/* as used in varints from Google protocol buffers */
|
|
size_t fmt_varint(char* dest,unsigned long long l) {
|
|
/* high bit says if more bytes are coming, lower 7 bits are payload; little endian */
|
|
size_t i;
|
|
for (i=0; l; ++i, l>>=7) {
|
|
if (dest) dest[i]=(l&0x7f) | ((!!(l&~0x7f))<<7);
|
|
}
|
|
if (!i) { /* l was 0 */
|
|
if (dest) dest[0]=0;
|
|
++i;
|
|
}
|
|
return i;
|
|
}
|
|
|
|
#ifdef __ELF__
|
|
size_t fmt_pb_type0_int(char* dest,unsigned long long l) __attribute__((alias("fmt_varint")));
|
|
#else
|
|
size_t fmt_pb_type0_int(char* dest,unsigned long long l) {
|
|
return fmt_varint(dest,l);
|
|
}
|
|
#endif
|