refactoring project structure

This commit is contained in:
2025-05-21 12:27:03 +02:00
parent af71544585
commit b2592d7334
12 changed files with 462 additions and 428 deletions

9
include/json.h Normal file
View File

@@ -0,0 +1,9 @@
#ifndef TGBOT_JSON_H
#define TGBOT_JSON_H
#include "types.h"
#include <json-c/json.h>
json_object *tgbot_new_inlinekeyboardmarkup(tgbot_inlinekeyboardmarkup **keyboard, size_t rows, size_t columns);
#endif