Don't hard-code the input file name in gen_tabcomplete.pl's output.
[pgsql.git] / src / include / tsearch / ts_locale.h
blobabc21a7ebeae607a0439149cbb83f4bfec01f323
1 /*-------------------------------------------------------------------------
3 * ts_locale.h
4 * locale compatibility layer for tsearch
6 * Copyright (c) 1998-2024, PostgreSQL Global Development Group
8 * src/include/tsearch/ts_locale.h
10 *-------------------------------------------------------------------------
12 #ifndef __TSLOCALE_H__
13 #define __TSLOCALE_H__
15 #include <ctype.h>
16 #include <limits.h>
17 #include <wctype.h>
19 #include "lib/stringinfo.h"
20 #include "mb/pg_wchar.h"
21 #include "utils/pg_locale.h"
23 /* working state for tsearch_readline (should be a local var in caller) */
24 typedef struct
26 FILE *fp;
27 const char *filename;
28 int lineno;
29 StringInfoData buf; /* current input line, in UTF-8 */
30 char *curline; /* current input line, in DB's encoding */
31 /* curline may be NULL, or equal to buf.data, or a palloc'd string */
32 ErrorContextCallback cb;
33 } tsearch_readline_state;
35 #define TOUCHAR(x) (*((const unsigned char *) (x)))
37 /* The second argument of t_iseq() must be a plain ASCII character */
38 #define t_iseq(x,c) (TOUCHAR(x) == (unsigned char) (c))
40 #define COPYCHAR(d,s) memcpy(d, s, pg_mblen(s))
42 extern int t_isdigit(const char *ptr);
43 extern int t_isspace(const char *ptr);
44 extern int t_isalpha(const char *ptr);
45 extern int t_isalnum(const char *ptr);
46 extern int t_isprint(const char *ptr);
48 extern char *lowerstr(const char *str);
49 extern char *lowerstr_with_len(const char *str, int len);
51 extern bool tsearch_readline_begin(tsearch_readline_state *stp,
52 const char *filename);
53 extern char *tsearch_readline(tsearch_readline_state *stp);
54 extern void tsearch_readline_end(tsearch_readline_state *stp);
56 #endif /* __TSLOCALE_H__ */