Home
last modified time | relevance | path

Searched refs:BcFile (Results 1 – 5 of 5) sorted by relevance

/src/contrib/bc/include/
H A Dfile.h51 typedef struct BcFile struct
60 } BcFile; argument
65 typedef struct BcFile struct
82 } BcFile; argument
137 bc_file_init(BcFile* f, FILE* file, bool errors_fatal);
150 bc_file_init(BcFile* f, int fd, char* buf, size_t cap, bool errors_fatal);
159 bc_file_free(BcFile* f);
168 bc_file_putchar(BcFile* restrict f, BcFlushType type, uchar c);
179 bc_file_flushErr(BcFile* restrict f, BcFlushType type);
187 bc_file_flush(BcFile* restrict f, BcFlushType type);
[all …]
H A Dvm.h740 BcFile fout;
743 BcFile ferr;
H A Dhistory.h361 extern BcFile bc_history_debug_fp;
/src/contrib/bc/src/
H A Dfile.c123 bc_file_flushErr(BcFile* restrict f, BcFlushType type) in bc_file_flushErr()
184 bc_file_flush(BcFile* restrict f, BcFlushType type) in bc_file_flush()
218 bc_file_write(BcFile* restrict f, BcFlushType type, const char* buf, size_t n) in bc_file_write()
268 bc_file_printf(BcFile* restrict f, const char* fmt, ...) in bc_file_printf()
283 bc_file_vprintf(BcFile* restrict f, const char* fmt, va_list args) in bc_file_vprintf()
414 bc_file_puts(BcFile* restrict f, BcFlushType type, const char* str) in bc_file_puts()
427 bc_file_putchar(BcFile* restrict f, BcFlushType type, uchar c) in bc_file_putchar()
460 bc_file_init(BcFile* f, FILE* file, bool errors_fatal) in bc_file_init()
470 bc_file_init(BcFile* f, int fd, char* buf, size_t cap, bool errors_fatal) in bc_file_init()
484 bc_file_free(BcFile* f) in bc_file_free()
H A Dhistory.c428 BcFile bc_history_debug_fp;