From b0607966151aa740f9bf6544ef89c1d8550721bf Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Sat, 24 Feb 1996 18:30:46 +0000 Subject: [PATCH] Unprotoize. --- lib/readtokens.c | 21 +++++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/lib/readtokens.c b/lib/readtokens.c index 0bd6692246..f4c6c2071e 100644 --- a/lib/readtokens.c +++ b/lib/readtokens.c @@ -58,7 +58,8 @@ void *xrealloc (); /* Initialize a tokenbuffer. */ void -init_tokenbuffer (token_buffer *tokenbuffer) +init_tokenbuffer (tokenbuffer) + token_buffer *tokenbuffer; { tokenbuffer->size = INITIAL_TOKEN_LENGTH; tokenbuffer->buffer = ((char *) xmalloc (INITIAL_TOKEN_LENGTH)); @@ -76,8 +77,11 @@ init_tokenbuffer (token_buffer *tokenbuffer) and on files that aren't newline-terminated. */ long -readtoken (FILE *stream, const char *delim, int n_delim, - token_buffer *tokenbuffer) +readtoken (stream, delim, n_delim, tokenbuffer) + FILE *stream; + const char *delim; + int n_delim; + token_buffer *tokenbuffer; { char *p; int c, i, n; @@ -160,9 +164,14 @@ readtoken (FILE *stream, const char *delim, int n_delim, %%% realloc() of `tokens' just before returning? */ int -readtokens (FILE *stream, int projected_n_tokens, - const char *delim, int n_delim, - char ***tokens_out, long **token_lengths) +readtokens (stream, projected_n_tokens, delim, n_delim, + tokens_out, token_lengths) + FILE *stream; + int projected_n_tokens; + const char *delim; + int n_delim; + char ***tokens_out; + long **token_lengths; { token_buffer tb, *token = &tb; int token_length; -- 2.30.2