suffix_list.h

Fri, 16 Sep 2011 09:14:59 +0200

author
Mike Becker <universe@uap-core.de>
date
Fri, 16 Sep 2011 09:14:59 +0200
changeset 12
902cb8d2053c
parent 11
06cbd0ec003d
child 17
5f43f733cc12
permissions
-rw-r--r--

removed dynamic programm name

/*
 * 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