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.
7 lines
173 B
C
7 lines
173 B
C
9 years ago
|
#include "fmt.h"
|
||
|
|
||
|
size_t fmt_pb_sint(char* dest,size_t fieldno,signed long long l) {
|
||
|
size_t n=fmt_pb_tag(dest,fieldno,0);
|
||
|
return n+fmt_pb_type0_sint(dest?dest+n:0,l);
|
||
|
}
|