X-Git-Url: https://git.sommitrealweird.co.uk/onak.git/blobdiff_plain/047b8ed75bbac19ef33690bd44746718a8261439..f93d57195dfa072ca6fea0c76428fde5337bcabc:/charfuncs.h diff --git a/charfuncs.h b/charfuncs.h index ffa7bf9..b09edf3 100644 --- a/charfuncs.h +++ b/charfuncs.h @@ -4,8 +4,6 @@ * Jonathan McDowell * * Copyright 2002 Project Purple - * - * $Id: charfuncs.h,v 1.3 2003/09/30 17:15:39 noodles Exp $ */ #ifndef __CHARFUNCS_H__ @@ -21,8 +19,8 @@ */ struct buffer_ctx { char *buffer; - int offset; - int size; + size_t offset; + size_t size; }; /** @@ -31,7 +29,7 @@ struct buffer_ctx { * @count: The number of characters to get from the buffer. * @c: Where to put the characters retrieved. */ -int buffer_fetchchar(void *ctx, size_t count, unsigned char *c); +int buffer_fetchchar(void *ctx, size_t count, void *c); /** * buffer_putchar - Puts a char to a buffer. @@ -43,26 +41,26 @@ int buffer_fetchchar(void *ctx, size_t count, unsigned char *c); * fill it then we double the size of the current buffer and then add the * rest. */ -int buffer_putchar(void *ctx, size_t count, unsigned char *c); +int buffer_putchar(void *ctx, size_t count, void *c); /** * file_fetchchar - Fetches a char from a file. */ -int file_fetchchar(void *fd, size_t count, unsigned char *c); +int file_fetchchar(void *fd, size_t count, void *c); /** * file_putchar - Puts a char to a file. */ -int file_putchar(void *fd, size_t count, unsigned char *c); +int file_putchar(void *fd, size_t count, void *c); /** * stdin_getchar - Gets a char from stdin. */ -int stdin_getchar(void *ctx, size_t count, unsigned char *c); +int stdin_getchar(void *ctx, size_t count, void *c); /** * stdout_putchar - Puts a char to stdout. */ -int stdout_putchar(void *ctx, size_t count, unsigned char *c); +int stdout_putchar(void *ctx, size_t count, void *c); #endif /* __CHARFUNCS_H__ */