Searched defs:safe_sprintf (Results 1 – 2 of 2) sorted by relevance
43 void safe_sprintf(char (&buffer)[SIZE], const char *format, ...) { in safe_sprintf() function
60 #define safe_sprintf(dst, count, ...) do {_snprintf(dst, count, __VA_ARGS__); (dst)[(count)-1] = 0;… macro