Lines Matching defs:my_snprintf
932 # define my_snprintf snprintf
938 my_snprintf(char *s, size_t size, char const *format, ...)
979 ? my_snprintf(buf, size, "%02d:%02d:%02d", hh, mm, ss)
981 ? my_snprintf(buf, size, "%02d:%02d", hh, mm)
982 : my_snprintf(buf, size, "%02d", hh));
1017 ? my_snprintf(buf, size, "%c%02ld%02d%02d", sign, hh, mm, ss)
1019 ? my_snprintf(buf, size, "%c%02ld%02d", sign, hh, mm)
1020 : my_snprintf(buf, size, "%c%02ld", sign, hh));
1123 ? my_snprintf(b, s, "%s", ab)
1131 ? my_snprintf(b, s, &"\t\t%d"[show_abbr], tm->tm_isdst)