File: quote.h

package info (click to toggle)
libdbd-pg-perl 1.49-2%2Betch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 680 kB
  • ctags: 381
  • sloc: perl: 3,921; ansic: 3,183; makefile: 99; sh: 22
file content (19 lines) | stat: -rw-r--r-- 960 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

#ifndef DBDQUOTEH
#define DBDQUOTEH
char * null_quote(char *string, STRLEN len, STRLEN *retlen);
char * quote_string(char *string, STRLEN len, STRLEN *retlen);
char * quote_bytea(unsigned char *string, STRLEN len, STRLEN *retlen);
char * quote_sql_binary(unsigned char *string, STRLEN len, STRLEN *retlen);
char * quote_bool(char *string, STRLEN len, STRLEN *retlen);
char * quote_integer(char *string, STRLEN len, STRLEN *retlen);
char * quote_geom(char *string, STRLEN len, STRLEN *retlen);
char * quote_path(char *string, STRLEN len, STRLEN *retlen);
char * quote_circle(char *string, STRLEN len, STRLEN *retlen);
void dequote_char(char *string, STRLEN *retlen);
void dequote_string(char *string, STRLEN *retlen);
void dequote_bytea(unsigned char *string, STRLEN *retlen);
void dequote_sql_binary(unsigned char *string, STRLEN *retlen);
void dequote_bool(char *string, STRLEN *retlen);
void null_dequote(char *string, STRLEN *retlen);
#endif /*DBDQUOTEH*/