X-Git-Url: https://the.earth.li/gitweb/?a=blobdiff_plain;f=charfuncs.c;h=4b404c9300f16038a91db63ae34524c30939c7c1;hb=5d859953e393a2539e67df3ce73798e7029cf5b9;hp=fab53a2c89eaa360c7e6d2f20d8dfe4f458d48af;hpb=5e1b22d763640c4d7a09d07920403d8d491b4410;p=onak.git diff --git a/charfuncs.c b/charfuncs.c index fab53a2..4b404c9 100644 --- a/charfuncs.c +++ b/charfuncs.c @@ -25,8 +25,8 @@ #include "charfuncs.h" -/** - * buffer_fetchchar - Fetches a char from a buffer. +/* + * Fetches a char from a buffer. * @ctx: Our buffer context structure. * @count: The number of characters to get from the buffer. * @c: Where to put the characters retrieved. @@ -47,7 +47,7 @@ int buffer_fetchchar(void *ctx, size_t count, void *c) return 0; } -/** +/* * buffer_putchar - Puts a char to a buffer. * @ctx: Our buffer context structure. * @count: The number of characters to put into the buffer. @@ -78,32 +78,32 @@ int buffer_putchar(void *ctx, size_t count, void *c) return 1; } -/** - * file_fetchchar - Fetches a char from a file. +/* + * Fetches a char from a file. */ int file_fetchchar(void *fd, size_t count, void *c) { return !(read( *(int *) fd, c, count)); } -/** - * file_putchar - Puts a char to a file. +/* + * Puts a char to a file. */ int file_putchar(void *fd, size_t count, void *c) { return !(write( *(int *) fd, c, count)); } -/** - * stdin_getchar - Gets a char from stdin. +/* + * Gets a char from stdin. */ int stdin_getchar(void *ctx, size_t count, void *c) { return (fread(c, 1, count, stdin) != count); } -/** - * stdout_putchar - Puts a char to stdout. +/* + * Puts a char to stdout. */ int stdout_putchar(void *ctx, size_t count, void *c) {