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
|
/*
** Copyright 2001 Double Precision, Inc. See COPYING for
** distribution information.
*/
/*
*/
#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 ("");
}
|