libini/libini.h

13 lines
424 B
C
Raw Permalink Normal View History

#ifndef LIBINI_H
2019-11-22 18:53:51 +08:00
#define LIBINI_H
int getinikeystring(char *title, char *key, char *filename, char *buf);
int putinikeystring(char *title, char *key, char *val, char *filename);
int getinikeyint(char *title, char *key, char *filename);
long getinikeylong(char *title, char *key, char *filename);
float getinikeyfloat(char *title, char *key, char *filename);
2019-11-22 18:53:51 +08:00
int libini_memory(char **pp);
void libini_free(char *p);
#endif