File tree Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Expand file tree Collapse file tree 2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -199,6 +199,7 @@ fgets
199
199
fileno
200
200
fopen
201
201
fpos_t
202
+ fprintf
202
203
fputc
203
204
fputs
204
205
fread
@@ -257,6 +258,7 @@ pclose
257
258
perror
258
259
pipe
259
260
popen
261
+ printf
260
262
ptrdiff_t
261
263
putchar
262
264
puts
Original file line number Diff line number Diff line change @@ -319,6 +319,8 @@ extern "C" {
319
319
pub fn feof ( stream : * mut FILE ) -> c_int ;
320
320
pub fn ferror ( stream : * mut FILE ) -> c_int ;
321
321
pub fn perror ( s : * const c_char ) ;
322
+ pub fn printf ( format : * const c_char , ...) -> :: c_int ;
323
+ pub fn fprintf ( stream : * mut FILE , format : * const c_char , ...) -> :: c_int ;
322
324
pub fn atoi ( s : * const c_char ) -> c_int ;
323
325
pub fn strtod ( s : * const c_char , endp : * mut * mut c_char ) -> c_double ;
324
326
pub fn strtof ( s : * const c_char , endp : * mut * mut c_char ) -> c_float ;
You can’t perform that action at this time.
0 commit comments