1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- #ifndef UNICODEIO_H
- # define UNICODEIO_H
- # include <stdio.h>
- # ifndef PARAMS
- # if defined PROTOTYPES || (defined __STDC__ && __STDC__)
- # define PARAMS(Args) Args
- # else
- # define PARAMS(Args) ()
- # endif
- # endif
- extern void print_unicode_char PARAMS ((FILE *stream, unsigned int code,
- int exit_on_error));
- extern long fwrite_success_callback PARAMS ((const char *buf, size_t buflen,
- void *callback_arg));
- #endif
|