suffix_list.h

Tue, 20 Sep 2011 15:19:28 +0200

author
Mike Becker <universe@uap-core.de>
date
Tue, 20 Sep 2011 15:19:28 +0200
changeset 16
bc9a0fefd892
parent 11
06cbd0ec003d
child 17
5f43f733cc12
permissions
-rw-r--r--

fixed makefile to run safely on compile errors + added -V option to cline

     1 /*
     2  * suffix_list.h
     3  *
     4  *  Created on: 15.09.2011
     5  *      Author: beckermi
     6  */
     8 #ifndef SUFFIX_LIST_H_
     9 #define SUFFIX_LIST_H_
    11 #include "stdinc.h"
    13 typedef struct _suffix_list {
    14   int count;
    15   char** items;
    16 } suffix_list_t;
    18 #ifdef _cplusplus
    19 extern "C" {
    20 #endif
    22 suffix_list_t* new_suffix_list_t();
    23 void add_suffix(suffix_list_t*, char*);
    25 #ifdef _cplusplus
    26 }
    27 #endif
    29 #endif /* SUFFIX_LIST_H_ */

mercurial