Sha256: 1926e28621012bbe2b8566d0762b4a63257d2904a6224569880a5ef857266151
Contents?: true
Size: 821 Bytes
Versions: 12
Compression:
Stored size: 821 Bytes
Contents
/*------------------------------------------------------------------------- * * scansup.h * scanner support routines. used by both the bootstrap lexer * as well as the normal lexer * * Portions Copyright (c) 2003-2013, PgPool Global Development Group * Portions Copyright (c) 1996-2012, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * * src/include/parser/scansup.h * *------------------------------------------------------------------------- */ #ifndef SCANSUP_H #define SCANSUP_H extern char *scanstr(const char *s); extern char *downcase_truncate_identifier(const char *ident, int len, bool warn); extern void truncate_identifier(char *ident, int len, bool warn); extern bool scanner_isspace(char ch); #endif /* SCANSUP_H */
Version data entries
12 entries across 12 versions & 1 rubygems