Fix obsolete comment regarding FSM truncation.
[PostgreSQL.git] / src / include / parser / scansup.h
blob6aa37e0d6edd3d9fe986deee2dd4bf964bcf00ee
1 /*-------------------------------------------------------------------------
3 * scansup.h
4 * scanner support routines. used by both the bootstrap lexer
5 * as well as the normal lexer
7 * Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
10 * $PostgreSQL$
12 *-------------------------------------------------------------------------
15 #ifndef SCANSUP_H
16 #define SCANSUP_H
18 extern char *scanstr(const char *s);
20 extern char *downcase_truncate_identifier(const char *ident, int len,
21 bool warn);
23 extern void truncate_identifier(char *ident, int len, bool warn);
25 extern bool scanner_isspace(char ch);
27 #endif /* SCANSUP_H */