X-Git-Url: https://the.earth.li/gitweb/?p=onak.git;a=blobdiff_plain;f=charfuncs.h;fp=charfuncs.h;h=4d8997b55aff70d9633059b216b8454229070a54;hp=5dadf6631d86925939761c1071466396d7181ef9;hb=35e886f23fde338387c8e2a3a74c9251f7735c3b;hpb=db700de99a954f1d88d15b28b386bc5b5e694df7 diff --git a/charfuncs.h b/charfuncs.h index 5dadf66..4d8997b 100644 --- a/charfuncs.h +++ b/charfuncs.h @@ -40,7 +40,7 @@ struct buffer_ctx { * @param count The number of characters to get from the buffer. * @param c Where to put the characters retrieved. */ -int buffer_fetchchar(void *ctx, size_t count, void *c); +size_t buffer_fetchchar(void *ctx, size_t count, void *c); /** * @brief Puts a char to a buffer. @@ -52,26 +52,26 @@ int buffer_fetchchar(void *ctx, size_t count, void *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, void *c); +size_t buffer_putchar(void *ctx, size_t count, void *c); /** * @brief Fetches a char from a file. */ -int file_fetchchar(void *fd, size_t count, void *c); +size_t file_fetchchar(void *fd, size_t count, void *c); /** * @brief Puts a char to a file. */ -int file_putchar(void *fd, size_t count, void *c); +size_t file_putchar(void *fd, size_t count, void *c); /** * @brief Gets a char from stdin. */ -int stdin_getchar(void *ctx, size_t count, void *c); +size_t stdin_getchar(void *ctx, size_t count, void *c); /** * @brief Puts a char to stdout. */ -int stdout_putchar(void *ctx, size_t count, void *c); +size_t stdout_putchar(void *ctx, size_t count, void *c); #endif /* __CHARFUNCS_H__ */