• Home
  • Raw
  • Download

Lines Matching refs:TRIO_PROTO

71 typedef int (*trio_outstream_t) TRIO_PROTO((trio_pointer_t, int));
72 typedef int (*trio_instream_t) TRIO_PROTO((trio_pointer_t));
74 TRIO_CONST char *trio_strerror TRIO_PROTO((int));
80 int trio_printf TRIO_PROTO((TRIO_CONST char *format, ...));
81 int trio_vprintf TRIO_PROTO((TRIO_CONST char *format, va_list args));
82 int trio_printfv TRIO_PROTO((TRIO_CONST char *format, void **args));
84 int trio_fprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, ...));
85 int trio_vfprintf TRIO_PROTO((FILE *file, TRIO_CONST char *format, va_list args));
86 int trio_fprintfv TRIO_PROTO((FILE *file, TRIO_CONST char *format, void **args));
88 int trio_dprintf TRIO_PROTO((int fd, TRIO_CONST char *format, ...));
89 int trio_vdprintf TRIO_PROTO((int fd, TRIO_CONST char *format, va_list args));
90 int trio_dprintfv TRIO_PROTO((int fd, TRIO_CONST char *format, void **args));
92 int trio_cprintf TRIO_PROTO((trio_outstream_t stream, trio_pointer_t closure,
94 int trio_vcprintf TRIO_PROTO((trio_outstream_t stream, trio_pointer_t closure,
96 int trio_cprintfv TRIO_PROTO((trio_outstream_t stream, trio_pointer_t closure,
99 int trio_sprintf TRIO_PROTO((char *buffer, TRIO_CONST char *format, ...));
100 int trio_vsprintf TRIO_PROTO((char *buffer, TRIO_CONST char *format, va_list args));
101 int trio_sprintfv TRIO_PROTO((char *buffer, TRIO_CONST char *format, void **args));
103 int trio_snprintf TRIO_PROTO((char *buffer, size_t max, TRIO_CONST char *format, ...));
104 int trio_vsnprintf TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format,
106 int trio_snprintfv TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format,
109 int trio_snprintfcat TRIO_PROTO((char *buffer, size_t max, TRIO_CONST char *format, ...));
110 int trio_vsnprintfcat TRIO_PROTO((char *buffer, size_t bufferSize, TRIO_CONST char *format,
113 char *trio_aprintf TRIO_PROTO((TRIO_CONST char *format, ...));
114 char *trio_vaprintf TRIO_PROTO((TRIO_CONST char *format, va_list args));
116 int trio_asprintf TRIO_PROTO((char **ret, TRIO_CONST char *format, ...));
117 int trio_vasprintf TRIO_PROTO((char **ret, TRIO_CONST char *format, va_list args));
122 int trio_scanf TRIO_PROTO((TRIO_CONST char *format, ...));
123 int trio_vscanf TRIO_PROTO((TRIO_CONST char *format, va_list args));
124 int trio_scanfv TRIO_PROTO((TRIO_CONST char *format, void **args));
126 int trio_fscanf TRIO_PROTO((FILE *file, TRIO_CONST char *format, ...));
127 int trio_vfscanf TRIO_PROTO((FILE *file, TRIO_CONST char *format, va_list args));
128 int trio_fscanfv TRIO_PROTO((FILE *file, TRIO_CONST char *format, void **args));
130 int trio_dscanf TRIO_PROTO((int fd, TRIO_CONST char *format, ...));
131 int trio_vdscanf TRIO_PROTO((int fd, TRIO_CONST char *format, va_list args));
132 int trio_dscanfv TRIO_PROTO((int fd, TRIO_CONST char *format, void **args));
134 int trio_cscanf TRIO_PROTO((trio_instream_t stream, trio_pointer_t closure,
136 int trio_vcscanf TRIO_PROTO((trio_instream_t stream, trio_pointer_t closure,
138 int trio_cscanfv TRIO_PROTO((trio_instream_t stream, trio_pointer_t closure,
141 int trio_sscanf TRIO_PROTO((TRIO_CONST char *buffer, TRIO_CONST char *format, ...));
142 int trio_vsscanf TRIO_PROTO((TRIO_CONST char *buffer, TRIO_CONST char *format, va_list args));
143 int trio_sscanfv TRIO_PROTO((TRIO_CONST char *buffer, TRIO_CONST char *format, void **args));
148 void trio_locale_set_decimal_point TRIO_PROTO((char *decimalPoint));
149 void trio_locale_set_thousand_separator TRIO_PROTO((char *thousandSeparator));
150 void trio_locale_set_grouping TRIO_PROTO((char *grouping));