00001 #ifndef liqcell_PROP_H
00002 #define liqcell_PROP_H
00003
00004 #include <unistd.h>
00005 #include <stdarg.h>
00006
00007
00008
00009 int liqcell_propgeti(liqcell *self,char *name,int valueifnotfound);
00010 char* liqcell_propgets(liqcell *self,char *name,char *valueifnotfound);
00011 int liqcell_propseti(liqcell *self,char *name,int value);
00012 char* liqcell_propsets(liqcell *self,char *name,char *value);
00013
00014
00015 int liqcell_propsets_vprintf(liqcell *self,char *name,char *format, va_list arg);
00016 int liqcell_propsets_printf(liqcell *self,char *name,char *format, ...);
00017
00018
00019
00020
00021
00022 int liqcell_propremoves(liqcell *self,char *name);
00023 int liqcell_propremovei(liqcell *self,char *name);
00024
00025
00026
00027 #endif