X-Git-Url: http://the.earth.li/gitweb/?p=onak.git;a=blobdiff_plain;f=charfuncs.c;h=49b680129aea1e6fcbb559ca770e6e327dc42d62;hp=8448aee1be579956a71b2480850fb534685b15d1;hb=de18b56efecadc4b5d2473904828db9c08cd2162;hpb=f93d57195dfa072ca6fea0c76428fde5337bcabc diff --git a/charfuncs.c b/charfuncs.c index 8448aee..49b6801 100644 --- a/charfuncs.c +++ b/charfuncs.c @@ -1,21 +1,29 @@ /* * charfuncs.c - Routines for dealing with character streams. * - * Jonathan McDowell + * Copyright 2002 Jonathan McDowell * - * Copyright 2002 Project Purple + * This program is free software: you can redistribute it and/or modify it + * under the terms of the GNU General Public License as published by the Free + * Software Foundation; version 2 of the License. + * + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or + * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for + * more details. + * + * You should have received a copy of the GNU General Public License along with + * this program. If not, see . */ #include #include -#include -#include #include #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. @@ -36,7 +44,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. @@ -67,32 +75,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) {