summaryrefslogtreecommitdiff
path: root/src/char_sql/strlib.h
blob: 3321996e11523474ae5168805ea74cc761cfe40b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
#ifndef _J_STR_LIB_H_
#define _J_STR_LIB_H_
#define J_MAX_MALLOC_SIZE 65535
// String function library.
// code by Jioh L. Jung (ziozzang@4wish.net)
// This code is under license "BSD"
unsigned char* jstrescape (unsigned char* pt);
unsigned char* jstrescapecpy (unsigned char* pt,unsigned char* spt);
int jmemescapecpy (unsigned char* pt,unsigned char* spt, int size);
#endif