FreeTDS API
 All Classes Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
string.h
1 /* FreeTDS - Library of routines accessing Sybase and Microsoft databases
2  * Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004 Brian Bruns
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Library General Public
6  * License as published by the Free Software Foundation; either
7  * version 2 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12  * Library General Public License for more details.
13  *
14  * You should have received a copy of the GNU Library General Public
15  * License along with this library; if not, write to the
16  * Free Software Foundation, Inc., 59 Temple Place - Suite 330,
17  * Boston, MA 02111-1307, USA.
18  */
19 
20 #ifndef _tdsstring_h_
21 #define _tdsstring_h_
22 
23 #include <freetds/pushvis.h>
24 
25 extern const struct tds_dstr tds_str_empty;
26 #define DSTR_INITIALIZER ((struct tds_dstr*) &tds_str_empty)
27 
28 /* TODO do some function and use inline if available */
29 
34 #if ENABLE_EXTRA_CHECKS
35 void tds_dstr_init(DSTR * s);
36 int tds_dstr_isempty(DSTR * s);
37 char *tds_dstr_buf(DSTR * s);
38 size_t tds_dstr_len(DSTR * s);
39 #else
40 
41 #define tds_dstr_init(s) \
42  do { *(s) = DSTR_INITIALIZER; } while(0)
43 
45 #define tds_dstr_isempty(s) \
46  ((*(s))->dstr_size == 0)
47 #define tds_dstr_buf(s) \
48  ((*(s))->dstr_s)
49 #define tds_dstr_len(s) \
50  ((*(s))->dstr_size)
51 #endif
52 
53 #define tds_dstr_cstr(s) \
54  ((const char* ) tds_dstr_buf(s))
55 
56 void tds_dstr_zero(DSTR * s);
57 void tds_dstr_free(DSTR * s);
58 
60 #define tds_dstr_empty(s) \
61  tds_dstr_free(s)
62 
63 DSTR* tds_dstr_dup(DSTR * s, const DSTR * src) TDS_WUR;
64 DSTR* tds_dstr_copy(DSTR * s, const char *src) TDS_WUR;
65 DSTR* tds_dstr_copyn(DSTR * s, const char *src, size_t length) TDS_WUR;
66 DSTR* tds_dstr_set(DSTR * s, char *src) TDS_WUR;
67 
69 DSTR* tds_dstr_setlen(DSTR *s, size_t length);
71 DSTR* tds_dstr_alloc(DSTR *s, size_t length) TDS_WUR;
72 
75 #include <freetds/popvis.h>
76 
77 #endif /* _tdsstring_h_ */
#define tds_dstr_isempty(s)
test if string is empty
Definition: string.h:45
DSTR * tds_dstr_copyn(DSTR *s, const char *src, size_t length)
Set string to a given buffer of characters.
Definition: tdsstring.c:78
DSTR * tds_dstr_copy(DSTR *s, const char *src)
copy a string from another
Definition: tdsstring.c:123
DSTR * tds_dstr_setlen(DSTR *s, size_t length)
limit length of string, MUST be <= current length
Definition: tdsstring.c:140
void tds_dstr_zero(DSTR *s)
clear all string filling with zeroes (mainly for security reason)
Definition: tdsstring.c:56
#define tds_dstr_init(s)
init a string with empty
Definition: string.h:41
DSTR * tds_dstr_set(DSTR *s, char *src)
set a string from another buffer.
Definition: tdsstring.c:108
void tds_dstr_free(DSTR *s)
free string
Definition: tdsstring.c:63
DSTR * tds_dstr_alloc(DSTR *s, size_t length)
allocate space for length char
Definition: tdsstring.c:160
Structure to hold a string.
Definition: tds.h:93