From: Jim Meyering Date: Wed, 21 Jun 2000 09:09:57 +0000 (+0000) Subject: *** empty log message *** X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=14078b53531cdbf994c56fca65b6e4cf0b20a2c0;p=pspp *** empty log message *** --- diff --git a/lib/getstr.h b/lib/getstr.h new file mode 100644 index 0000000000..367bf4e116 --- /dev/null +++ b/lib/getstr.h @@ -0,0 +1,19 @@ +#ifndef GETSTR_H_ +# define GETSTR_H_ 1 + +# include + +# ifndef PARAMS +# if defined PROTOTYPES || (defined __STDC__ && __STDC__) +# define PARAMS(Args) Args +# else +# define PARAMS(Args) () +# endif +# endif + +int +getstr PARAMS ((char **lineptr, size_t *n, FILE *stream, + int delim1, int delim2, + size_t offset)); + +#endif