X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/blobdiff_plain/62078c1601192c2594b954a122ac44a0c319c9bd..f18acf888a15b69e47f2968f08c055f1e06b7d04:/charfuncs.h diff --git a/charfuncs.h b/charfuncs.h index f394e15..c5ee2a0 100644 --- a/charfuncs.h +++ b/charfuncs.h @@ -4,6 +4,8 @@ * Jonathan McDowell * * Copyright 2002 Project Purple + * + * $Id: charfuncs.h,v 1.4 2003/10/04 10:21:40 noodles Exp $ */ #ifndef __CHARFUNCS_H__ @@ -19,8 +21,8 @@ */ struct buffer_ctx { char *buffer; - int offset; - int size; + size_t offset; + size_t size; }; /** @@ -53,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__ */