mirror of
https://github.com/MEhrn00/boflink
synced 2026-06-08 11:36:57 +00:00
14 lines
241 B
C
14 lines
241 B
C
#include "myapi.h"
|
|
|
|
void go(void) {
|
|
int version = MyApiVersion();
|
|
MyApiPrintf("MyApiVersion: %d", version);
|
|
|
|
int *value = MyApiAlloc(sizeof(int));
|
|
|
|
*value = 123;
|
|
MyApiPrintf("value: %d", *value);
|
|
|
|
MyApiFree(value);
|
|
}
|