ESAPI-C 1.0
The OWASP Enterprise Security API for C
|
A dynamic string implementation using macros. More...
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
Go to the source code of this file.
Data Structures | |
struct | UT_string |
Defines | |
#define | UTSTRING_VERSION 1.9.1 |
#define | _UNUSED_ |
#define | oom() exit(-1) |
#define | utstring_reserve(s, amt) |
#define | utstring_init(s) |
#define | utstring_done(s) |
#define | utstring_free(s) |
#define | utstring_new(s) |
#define | utstring_clear(s) |
#define | utstring_bincpy(s, b, l) |
#define | utstring_concat(dst, src) |
#define | utstring_len(s) ((unsigned)((s)->i)) |
#define | utstring_body(s) ((s)->d) |
A dynamic string implementation using macros.
Definition in file utstring.h.
#define utstring_bincpy | ( | s, | |
b, | |||
l | |||
) |
do { \ utstring_reserve(s,(l)+1); \ if (l) memcpy(&(s)->d[(s)->i], b, l); \ s->i += l; \ s->d[s->i]='\0'; \ } while(0)
Definition at line 93 of file utstring.h.
#define utstring_clear | ( | s | ) |
do { \ (s)->i = 0; \ } while(0)
Definition at line 88 of file utstring.h.
#define utstring_concat | ( | dst, | |
src | |||
) |
do { \ utstring_reserve(dst,(src->i)+1); \ if (src->i) memcpy(&(dst)->d[(dst)->i], src->d, src->i); \ dst->i += src->i; \ dst->d[dst->i]='\0'; \ } while(0)
Definition at line 101 of file utstring.h.
#define utstring_done | ( | s | ) |
do { \ if ((s)->d != NULL) free((s)->d); \ (s)->n = 0; \ } while(0)
Definition at line 69 of file utstring.h.
#define utstring_free | ( | s | ) |
do { \ utstring_done(s); \ free(s); \ } while(0)
Definition at line 75 of file utstring.h.
#define utstring_init | ( | s | ) |
do { \ (s)->n = 0; (s)->i = 0; (s)->d = NULL; \ utstring_reserve(s,100); \ } while(0)
Definition at line 63 of file utstring.h.
#define utstring_new | ( | s | ) |
do { \ s = (UT_string*)calloc(sizeof(UT_string),1); \ if (!s) oom(); \ utstring_init(s); \ } while(0)
Definition at line 81 of file utstring.h.
#define utstring_reserve | ( | s, | |
amt | |||
) |
do { \ if (((s)->n - (s)->i) < (size_t)(amt)) { \ (s)->d = (char*)realloc((s)->d, (s)->n + amt); \ if ((s)->d == NULL) oom(); \ (s)->n += amt; \ } \ } while(0)
Definition at line 54 of file utstring.h.
#define UTSTRING_VERSION 1.9.1 |
Copyright (c) 2008-2010, Troy D. Hanson http://uthash.sourceforge.net All rights reserved.
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
Definition at line 35 of file utstring.h.