Searched refs:BcFile (Results 1 – 5 of 5) sorted by relevance
| /src/contrib/bc/include/ |
| H A D | file.h | 51 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 D | vm.h | 740 BcFile fout; 743 BcFile ferr;
|
| H A D | history.h | 361 extern BcFile bc_history_debug_fp;
|
| /src/contrib/bc/src/ |
| H A D | file.c | 123 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 D | history.c | 428 BcFile bc_history_debug_fp;
|