Changeset 128
- Timestamp:
- 04/20/09 19:09:59 (3 years ago)
- Files:
-
- 1 added
- 2 modified
-
Makefile.vc (modified) (1 diff)
-
src/ows_api.h (modified) (1 diff)
-
src/struct/alist.c (added)
Legend:
- Unmodified
- Added
- Removed
-
Makefile.vc
r98 r128 34 34 src\ows\ows_request.obj src\ows\ows_srs.obj src\ows\ows_version.obj src\ows\ows_storage.obj \ 35 35 src\struct\array.obj src\struct\buffer.obj src\struct\cgi_request.obj \ 36 src\struct\ list.obj src\struct\mlist.obj src\struct\regexp.obj \36 src\struct\alist.obj src\struct\list.obj src\struct\mlist.obj src\struct\regexp.obj \ 37 37 src\wfs\wfs_describe.obj src\wfs\wfs_error.obj src\wfs\wfs_get_capabilities.obj \ 38 38 src\wfs\wfs_get_feature.obj src\wfs\wfs_request.obj src\wfs\wfs_transaction.obj \ -
src/ows_api.h
r121 r128 5 5 array *array_init (); 6 6 bool array_is_key (const array * a, const char *key); 7 alist *alist_init(); 8 void alist_free(alist * al); 9 void alist_add(alist * al, buffer * key, buffer * value); 10 bool alist_is_key(const alist * al, const char *key); 11 list *alist_get(const alist * al, const char *key); 12 void alist_flush(const alist * al, FILE * output); 7 13 void buffer_add (buffer * buf, char c); 8 14 void buffer_add_double (buffer * buf, double f);