File: quote.h

package info (click to toggle)
libdbd-pg-perl 3.18.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,428 kB
  • sloc: perl: 10,202; ansic: 5,977; makefile: 15
file content (20 lines) | stat: -rw-r--r-- 1,501 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

char * null_quote(pTHX_ const char *string, STRLEN len, STRLEN *retlen, int estring);
char * quote_string(pTHX_ const char *string, STRLEN len, STRLEN *retlen, int estring);
char * quote_bytea(pTHX_ char *string, STRLEN len, STRLEN *retlen, int estring);
char * quote_sql_binary(pTHX_ char *string, STRLEN len, STRLEN *retlen, int estring);
char * quote_bool(pTHX_ const char *string, STRLEN len, STRLEN *retlen, int estring);
char * quote_integer(pTHX_ const char *string, STRLEN len, STRLEN *retlen, int estring);
char * quote_int(pTHX_ const char *string, STRLEN len, STRLEN *retlen, int estring);
char * quote_float(pTHX_ char *string, STRLEN len, STRLEN *retlen, int estring);
char * quote_name(pTHX_ const char *string, STRLEN len, STRLEN *retlen, int estring);
char * quote_geom(pTHX_ const char *string, STRLEN len, STRLEN *retlen, int estring);
char * quote_path(pTHX_ const char *string, STRLEN len, STRLEN *retlen, int estring);
char * quote_circle(pTHX_ const char *string, STRLEN len, STRLEN *retlen, int estring);
void dequote_char(pTHX_ const char *string, STRLEN *retlen, int estring);
void dequote_string(pTHX_ const char *string, STRLEN *retlen, int estring);
void dequote_bytea(pTHX_ char *string, STRLEN *retlen, int estring);
void dequote_sql_binary(pTHX_ char *string, STRLEN *retlen, int estring);
void dequote_bool(pTHX_ char *string, STRLEN *retlen, int estring);
void null_dequote(pTHX_ const char *string, STRLEN *retlen, int estring);
bool is_keyword(const char *string);