1 Star 0 Fork 0

jxva/jv-properties

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
jv_properties_main.c 565 Bytes
一键复制 编辑 原始数据 按行查看 历史
Zane Chiang 提交于 2018-03-14 16:07 . first commit
#include <jv_properties.h>
static jv_int_t callback(jv_string_t *key, jv_string_t *value);
static jv_int_t callback( jv_string_t *key, jv_string_t *value) {
printf("[%s:%lu] = [%s:%lu]\n", key->data, (jv_uint_t)key->len, value->data, (jv_uint_t)value->len);
return JV_OK;
}
int main(int argc, char *argv[]) {
FILE *fp;
char *file = "test.properties";
fp = fopen(file, "r");
if (!fp) {
fprintf(stderr, "Error opening %s\n", file);
return JV_ERROR;
}
jv_properties_load(fp, callback);
fclose(fp);
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/jxva/jv-properties.git
git@gitee.com:jxva/jv-properties.git
jxva
jv-properties
jv-properties
master

搜索帮助