X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/blobdiff_plain/c7f25997d3d36ac30b26f663e1d257e4625662a1..047b8ed75bbac19ef33690bd44746718a8261439:/charfuncs.h diff --git a/charfuncs.h b/charfuncs.h index e350143..ffa7bf9 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.3 2003/09/30 17:15:39 noodles Exp $ */ #ifndef __CHARFUNCS_H__ @@ -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__ */