gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 1 of 1 for fundef:__attribute__ from t2ex/bsd_source/lib/libc/src_bsd/include/stdio.h (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/include/stdio.h - 15.7KB - 450 lines
278: int      snprintf(char *, size_t, const char *, ...)
279:                 __attribute__((__format__ (printf, 3, 4)))
280:                 __attribute__((__nonnull__ (3)))
282: int vfscanf(FILE *, const char *, __va_list) 283: __attribute__((__format__ (scanf, 2, 0))) 284: __attribute__((__nonnull__ (2))); 285: int vscanf(const char *, __va_list) 286: __attribute__((__format__ (scanf, 1, 0))) 287: __attribute__((__nonnull__ (1))); 288: int vsnprintf(char *, size_t, const char *, __va_list) 289: __attribute__((__format__ (printf, 3, 0))) 290: __attribute__((__nonnull__ (3)))
292: int vsscanf(const char *, const char *, __va_list) 293: __attribute__((__format__ (scanf, 2, 0))) 294: __attribute__((__nonnull__ (2)));
345: int asprintf(char **, const char *, ...) 346: __attribute__((__format__ (printf, 2, 3))) 347: __attribute__((__nonnull__ (2)));
354: int vasprintf(char **, const char *, __va_list) 355: __attribute__((__format__ (printf, 2, 0))) 356: __attribute__((__nonnull__ (2)));