cjson ignore and comment

This commit is contained in:
Imbus 2025-11-03 03:10:44 +01:00
parent 8661c89633
commit e27ef8ca49
3 changed files with 20 additions and 6 deletions

View file

@ -1,5 +1,6 @@
#include <cjson/cJSON.h>
#include "cjson/cJSON.h"
#include <stdio.h>
#include <stdlib.h>
char *build_set_level_command(int level) {
cJSON *root = cJSON_CreateObject();
@ -9,10 +10,12 @@ char *build_set_level_command(int level) {
// char *message = cJSON_PrintUnformatted(root);
char *msg2 = cJSON_Print(root);
cJSON_Delete(root);
return msg2; // Remember to free this when done!
return msg2;
}
int main(void) {
printf("%s\n", build_set_level_command(10));
char *msg = build_set_level_command(10);
printf("%s\n", msg);
free(msg);
return 0;
}