#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdarg.h>
#include <fcntl.h>
#include <unistd.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <errno.h>
#include <dirent.h>
#include "liqcell.h"
Functions | |
int | liqcell_propremoves (liqcell *self, char *name) |
int | liqcell_propremovei (liqcell *self, char *name) |
int | liqcell_propgeti (liqcell *self, char *name, int valueifnotfound) |
int | liqcell_propseti (liqcell *self, char *name, int value) |
char * | liqcell_propgets (liqcell *self, char *name, char *valueifnotfound) |
char * | liqcell_propsets (liqcell *self, char *name, char *value) |
char * | liqcell_propsets_vprintf (liqcell *self, char *name, char *format, va_list arg) |
char * | liqcell_propsets_printf (liqcell *self, char *name, char *format,...) |
Copyright (C) 2008 Gary Birkett
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
int liqcell_propseti | ( | liqcell * | self, | |
char * | name, | |||
int | value | |||
) |
Create a child liqcell for the parent (self) with .tag defined as the integer value provided. This uses liqcell nameclass "prop.i".
self | The parent liqcell | |
name | The name of the prop | |
value | The value to set the child's .tag to |