string_list.h

Thu, 26 Jan 2012 15:55:52 +0100

author
Mike Becker <universe@uap-core.de>
date
Thu, 26 Jan 2012 15:55:52 +0100
changeset 27
95a958e3de88
parent 20
43725438ac50
permissions
-rw-r--r--

added regexp_parser struct and compile function

     1 /*
     2  * string_list.h
     3  *
     4  *  Created on: 15.09.2011
     5  *      Author: Mike
     6  */
     8 #ifndef STRING_LIST_H_
     9 #define STRING_LIST_H_
    11 #include "stdinc.h"
    13 typedef struct _string_list {
    14   size_t count;
    15   char** items;
    16 } string_list_t;
    18 #ifdef _cplusplus
    19 extern "C" {
    20 #endif
    22 string_list_t* new_string_list_t();
    23 void destroy_string_list_t(string_list_t*);
    24 void add_string(string_list_t*, char*);
    26 #ifdef _cplusplus
    27 }
    28 #endif
    30 #endif /* STRING_LIST_H_ */

mercurial