1 /*-------------------------------------------------------------------------
4 * scanner support routines. used by both the bootstrap lexer
5 * as well as the normal lexer
7 * Portions Copyright (c) 2003-2008, PgPool Global Development Group
8 * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
9 * Portions Copyright (c) 1994, Regents of the University of California
11 * $PostgreSQL: pgsql/src/include/parser/scansup.h,v 1.18 2004/12/31 22:03:38 pgsql Exp $
13 *-------------------------------------------------------------------------
19 extern char *scanstr(const char *s);
21 extern char *downcase_truncate_identifier(const char *ident, int len,
24 extern void truncate_identifier(char *ident, int len, int warn);
26 #endif /* SCANSUP_H */