148939Sbostic /*- 248939Sbostic * Copyright (c) 1991 The Regents of the University of California. 348939Sbostic * All rights reserved. 448939Sbostic * 548939Sbostic * %sccs.include.redist.c% 648939Sbostic * 7*50010Sbostic * @(#)extern.h 5.3 (Berkeley) 06/05/91 848939Sbostic */ 948939Sbostic 1050007Sbostic __BEGIN_DECLS 1150007Sbostic int c_cchars __P((const void *, const void *)); 1250007Sbostic int c_modes __P((const void *, const void *)); 13*50010Sbostic int csearch __P((char ***, struct info *)); 1450007Sbostic void checkredirect __P((void)); 1550007Sbostic void err __P((const char *, ...)); 1650007Sbostic void gprint __P((struct termios *, struct winsize *, int)); 1750007Sbostic void gread __P((struct termios *, char *)); 18*50010Sbostic int ksearch __P((char ***, struct info *)); 19*50010Sbostic int msearch __P((char ***, struct info *)); 2050007Sbostic void optlist __P((void)); 2150007Sbostic void print __P((struct termios *, struct winsize *, int, enum FMT)); 2250007Sbostic void warn __P((const char *, ...)); 2350007Sbostic __END_DECLS 2450007Sbostic 2550007Sbostic extern struct cchar cchars1[], cchars2[]; 2650007Sbostic extern struct modes cmodes[], imodes[], lmodes[], omodes[]; 27*50010Sbostic extern char *usage; 28