1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75
|
/**********************************************************************
*
* This file is part of Cardpeek, the smart card reader utility.
*
* Copyright 2009-2014 by Alain Pannetrat <L1L1@gmx.com>
*
* Cardpeek is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Cardpeek is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Cardpeek. If not, see <http://www.gnu.org/licenses/>.
*
*/
#ifndef A_STRING_H
#define A_STRING_H
typedef struct {
unsigned _alloc;
unsigned _size;
char* _data;
} a_string_t;
a_string_t* a_strnnew(unsigned n, const char* str);
a_string_t* a_strnew(const char* str);
void a_strfree(a_string_t* cs);
char* a_strfinalize(a_string_t* cs);
/* Functions for copying and appending zero terminated strings:
The a_strn*() function copy at most n bytes form the str, halting
before n if an ending 0 is found.
*/
const char* a_strncpy(a_string_t* cs, unsigned n, const char* str);
const char* a_strcpy(a_string_t* cs, const char* str);
const char* a_strncat(a_string_t* cs, unsigned n, const char* str);
const char* a_strcat(a_string_t* cs, const char* str);
const char* a_strpushback(a_string_t* cs, char c);
/* Functions for non zero terminated strings:
They operate like the a_strn*() functions but copy or append exactly
n bytes of data to the string including any 0s found.
*/
const char* a_memcpy(a_string_t* cs, unsigned n, const void* str);
const char* a_memcat(a_string_t* cs, unsigned n, const void* str);
const char* a_mempushback(a_string_t* cs, unsigned char c);
/*
a_strval() is guaranteed to return a null terminated string.
a_strlen() returns the total length of the string *excluding*
the additonal 0 that is added to guarantee that the string is null
terminated.
*/
const char* a_strval(const a_string_t* cs);
unsigned a_strlen(const a_string_t* cs);
int a_sprintf(a_string_t* cs, const char *format, ...);
int a_strnequal(const a_string_t* cs, unsigned n, const char *value);
int a_strequal(const a_string_t* cs, const char *value);
#endif
|