File: args.c

package info (click to toggle)
courier 0.47-4sarge5
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 32,680 kB
  • ctags: 12,265
  • sloc: ansic: 164,045; cpp: 23,863; sh: 19,569; perl: 7,225; makefile: 4,192; yacc: 316; sed: 16
file content (66 lines) | stat: -rw-r--r-- 928 bytes parent folder | download | duplicates (5)
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
/*
** Copyright 2001 Double Precision, Inc.  See COPYING for
** distribution information.
*/


/*
** $Id: args.c,v 1.1 2001/03/15 04:07:05 mrsam Exp $
*/
#include	"sqwebmail.h"
#include	"config.h"
#include	<stdio.h>
#include	<string.h>
#include	<stdlib.h>

struct arglist {
	struct arglist *next;
	char *argbuf;
} ;

static struct arglist *arglist=0;

void freeargs()
{
	struct arglist *a;

	while ((a=arglist) != NULL)
	{
		arglist=a->next;
		free(a->argbuf);
		free(a);
	}
}

void addarg(const char *p)
{
	char *s=strdup(p);
	struct arglist *a;

	if (!s)
		enomem();

	a=(struct arglist *)malloc(sizeof(struct arglist));

	if (!a)
	{
		free(s);
		enomem();
	}

	a->next=arglist;
	arglist=a;
	a->argbuf=s;
}

const char *getarg(const char *n)
{
	size_t l=strlen(n);
	struct arglist *a;

	for (a=arglist; a; a=a->next)
		if (strncmp(a->argbuf, n, l) == 0 &&
		    a->argbuf[l] == '=')
			return (a->argbuf+l+1);
	return ("");
}