summaryrefslogtreecommitdiff
path: root/mimetypes/ident.c
blob: 6478e7626d70ea6d838495113db43c902d3ecdb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#include <stdlib.h>
#include <errno.h>
#include <string.h>

struct ident_ref
{
  char *name;
  size_t count;
  struct ident_ref *next;
};

static struct ident_ref *nametab;

int
ident_ref (char const *name, char const **refname)
{
  struct ident_ref *ref = NULL;
  
  if (!refname)
    return EINVAL;

  if (!name)
    {
      *refname = NULL;
      return 0;
    }
  
  if (nametab)
    {
      for (ref = nametab; ref; ref = ref->next)
	{
	  if (strcmp (ref->name, name) == 0)
	    break;
	}
    }

  if (!ref)
    {
      ref = malloc (sizeof (*ref));
      if (!ref)
	return -1;
      ref->name = strdup (name);
      if (!ref->name)
	{
	  free (ref);
	  return -1;
	}
      ref->count = 0;
      ref->next = nametab;
      nametab = ref;
    }
  
  ref->count++; 
  *refname = ref->name;
 
  return 0;
}

void
ident_deref (char const *name)
{
  struct ident_ref *ref, *prev;

  if (!name || !nametab)
    return;

  for (ref = nametab, prev = NULL; ref; prev = ref, ref = ref->next)
    {
      if (strcmp (ref->name, name) == 0)
	{
	  if (--ref->count == 0)
	    {
	      if (prev)
		prev->next = ref->next;
	      else
		nametab = ref->next;
	      free (ref->name);
	      free (ref);
	    }
	  break;
	}
    }
}
  

Return to:

Send suggestions and report system problems to the System administrator.