2015-11-24 17:58:32 +01:00
|
|
|
/*
|
|
|
|
The MIT License (MIT)
|
|
|
|
|
|
|
|
Copyright (c) 2015 LE Xuan Sang xsang.le@gmail.com
|
|
|
|
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
|
|
in the Software without restriction, including without limitation the rights
|
|
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
|
|
|
|
The above copyright notice and this permission notice shall be included in
|
|
|
|
all copies or substantial portions of the Software.
|
|
|
|
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
#ifndef LIST_H
|
|
|
|
#define LIST_H
|
2015-10-22 11:39:11 +02:00
|
|
|
#include "utils.h"
|
2015-11-24 17:58:32 +01:00
|
|
|
#define list item
|
|
|
|
typedef struct __item{
|
|
|
|
int type;
|
|
|
|
union{
|
|
|
|
int i;
|
|
|
|
int b;
|
|
|
|
char* s;
|
|
|
|
double d;
|
|
|
|
char* date;
|
|
|
|
char* b64;
|
|
|
|
struct __item* array;
|
2015-10-22 11:39:11 +02:00
|
|
|
} value;
|
2015-11-24 17:58:32 +01:00
|
|
|
struct __item* next;
|
|
|
|
}*item;
|
|
|
|
|
|
|
|
list list_init();
|
|
|
|
void list_put(list*,item);
|
|
|
|
void list_put_i(list*,int);
|
|
|
|
void list_put_d(list*,double);
|
|
|
|
void list_put_b(list*,int);
|
|
|
|
void list_put_b64(list*,const char*);
|
|
|
|
void list_put_date(list*,const char*);
|
|
|
|
void list_put_s(list*,const char*);
|
|
|
|
void list_put_array(list*,list);
|
|
|
|
item list_last(list);
|
|
|
|
int list_remove(list,int);
|
|
|
|
int list_size(list);
|
|
|
|
item list_at(list,int);
|
|
|
|
int list_empty(list);
|
|
|
|
item list_item(int type);
|
2015-10-22 11:39:11 +02:00
|
|
|
list split(const char*, const char*);
|
2015-11-24 17:58:32 +01:00
|
|
|
char* as_string(list);
|
|
|
|
void list_put_special(list*, const char*);
|
|
|
|
void list_free(list *);
|
|
|
|
#endif
|