hc
2024-03-22 a0752693d998599af469473b8dc239ef973a012f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include "native.h"
#include <stdio.h>
#include <time.h>
 
// Pure native functions
 
#define CHAR_BUFFER_SIZE 256
static char buffer[CHAR_BUFFER_SIZE];
 
const char* read_constant_string()
{
   return "Hello from C";
}
const char* read_internal_string()
{
   return buffer;
}
void write_internal_string(const char* string)
{
   snprintf(buffer, CHAR_BUFFER_SIZE, "%s", string);
}
void write_external_string(char* string, size_t maxLength)
{
   snprintf(string, maxLength, "Set from C");
}
void execute_function(void(*function)(void*), void* context)
{
   function(context);
}
void set_time_in_seconds(int seconds)
{
   time_t timeToSet = seconds;
   stime(&timeToSet);
}
void write_internal_time_in_seconds()
{
   time_t systemTime = time(NULL);
   snprintf(buffer, CHAR_BUFFER_SIZE, "%u", systemTime);
}