X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=charfuncs.h;h=c5ee2a0904858c93a7031c3b86312ff7e581d808;hb=9a96aa6edb1d8033124fe81b945c7e76f37d6087;hp=e3501431ab8e86a64481aca9819bba6511f11648;hpb=0f4971d043c38bae1bfb95201622a1405110f899;p=onak.git diff --git a/charfuncs.h b/charfuncs.h index e350143..c5ee2a0 100644 --- a/charfuncs.h +++ b/charfuncs.h @@ -5,7 +5,7 @@ * * Copyright 2002 Project Purple * - * $Id: charfuncs.h,v 1.2 2003/06/04 20:57:07 noodles Exp $ + * $Id: charfuncs.h,v 1.4 2003/10/04 10:21:40 noodles Exp $ */ #ifndef __CHARFUNCS_H__ @@ -21,8 +21,8 @@ */ struct buffer_ctx { char *buffer; - int offset; - int size; + size_t offset; + size_t size; }; /** @@ -55,5 +55,14 @@ int file_fetchchar(void *fd, size_t count, unsigned char *c); */ int file_putchar(void *fd, size_t count, unsigned char *c); +/** + * stdin_getchar - Gets a char from stdin. + */ +int stdin_getchar(void *ctx, size_t count, unsigned char *c); + +/** + * stdout_putchar - Puts a char to stdout. + */ +int stdout_putchar(void *ctx, size_t count, unsigned char *c); #endif /* __CHARFUNCS_H__ */