Skip to content
Permalink
c083e4f8d8
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
12 lines (10 sloc) 420 Bytes
#ifndef _KEYWORDSET_H
#define _KEYWORDSET_H
struct keywordset *keywordset_new(char *input);
void keywordset_update(struct keywordset *kws, char *input);
void keywordset_add(struct keywordset *kws, char *input);
char *keywordset_get(struct keywordset *kws);
int keywordset_ismember(struct keywordset *kws, char *name);
void keywordset_purge(struct keywordset *kws);
void keywordset_free(struct keywordset *kws);
#endif