suffix_list.h

Mon, 19 Sep 2011 08:11:08 +0200

author
Mike Becker <universe@uap-core.de>
date
Mon, 19 Sep 2011 08:11:08 +0200
changeset 15
9a262e046ab8
parent 11
06cbd0ec003d
child 17
5f43f733cc12
permissions
-rw-r--r--

added license

/*
 * suffix_list.h
 *
 *  Created on: 15.09.2011
 *      Author: beckermi
 */

#ifndef SUFFIX_LIST_H_
#define SUFFIX_LIST_H_

#include "stdinc.h"

typedef struct _suffix_list {
  int count;
  char** items;
} suffix_list_t;

#ifdef _cplusplus
extern "C" {
#endif

suffix_list_t* new_suffix_list_t();
void add_suffix(suffix_list_t*, char*);

#ifdef _cplusplus
}
#endif

#endif /* SUFFIX_LIST_H_ */

mercurial