#include "lclintMacros.nf"#include "llbasic.h"Go to the source code of this file.
Functions | |
| lsymbolList | lsymbolList_new () |
| void | lsymbolList_addh (lsymbolList s, lsymbol el) |
| void | lsymbolList_free (lsymbolList s) |
|
|
Definition at line 73 of file lsymbolList.c. 00074 {
00075 if (s->nspace <= 0)
00076 lsymbolList_grow (s);
00077
00078 s->nspace--;
00079 s->elements[s->nelements] = el;
00080 s->nelements++;
00081 }
|
|
|
Definition at line 84 of file lsymbolList.c. Referenced by sort_import(). |
|
|
Definition at line 36 of file lsymbolList.c. Referenced by sort_import(). 00037 {
00038 lsymbolList s = (lsymbolList) dmalloc (sizeof (*s));
00039
00040 s->nelements = 0;
00041
00042 s->nspace = lsymbolListBASESIZE;
00043 s->elements = (lsymbol *) dmalloc (sizeof (*s->elements) * lsymbolListBASESIZE);
00044
00045 return (s);
00046 }
|
1.2.3 written by Dimitri van Heesch,
© 1997-2000