aboutsummaryrefslogtreecommitdiff
path: root/doc/lj/addkeyword.c
blob: a9d6e0c5ce1b6a62c0db5cf88ada03d2de8f2e17 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
static void addKeyword
  (struct EXTRACTOR_Keywords **list,
   char *keyword, EXTRACTOR_KeywordType type)
{
  EXTRACTOR_KeywordList *next;
  next = malloc (sizeof (EXTRACTOR_KeywordList));
  next->next = *list;
  next->keyword = keyword;
  next->keywordType = type;
  *list = next;
}

Caption:The plugins return the meta - data using a simple linked - list.