This repository has been archived on 2021-07-03. You can view files and clone it, but cannot push or open issues or pull requests.
glovechat/src/main.c

12 lines
319 B
C
Raw Normal View History

2019-02-06 16:44:58 +00:00
#include <stdio.h>
#include "util/ipaddr.h"
#include "util/containers.h"
2019-02-06 16:44:58 +00:00
int main(int argc, char** argv) {
glv_map_t* map = glv_map_create();
glv_map_set_copy(map, "test", "Hello!", 0);
glv_map_set_copy(map, "amazing", "Hello!!", 0);
glv_map_set_copy(map, "holy me WOW", "Hello!!", 0);
2019-02-06 16:44:58 +00:00
return 0;
}