1/* prototypes for quote.c */
2
3#ifndef PARAMS
4# if defined PROTOTYPES || (defined __STDC__ && __STDC__)
5#  define PARAMS(Args) Args
6# else
7#  define PARAMS(Args) ()
8# endif
9#endif
10
11char const *quote_n PARAMS ((int n, char const *name));
12char const *quote PARAMS ((char const *name));
13