-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathoutput.h
More file actions
38 lines (35 loc) · 878 Bytes
/
output.h
File metadata and controls
38 lines (35 loc) · 878 Bytes
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
#pragma once
#include "random.h"
#include "ing.h"
char* heyo();
bool credbuild();
int a();
void draw(int x, int y, int color, int overwrite);
void c(int x);
void print();
extern int t;
typedef enum {
test_enum_one,
test_enum_two,
test_enum_three,
} test_enum;
extern char* test_enum_strings[];
test_enum test_enum_from_string(char * val);
typedef struct hello hello;
typedef struct hello {
void* ptr;
int (*func)(void* instance, int rule, Token elem);
void (*test)(void* instance);
} hello;
int hello_func(hello instance, int rule, Token elem);
void hello_test(hello instance);
typedef struct testType {
int prop1;
int prop2;
} testType;
void testType_func(testType* instance, int rule, Token elem);
void testType_test(testType* instance);
void testType_helper(testType* instance);
hello testType_init();
int _temp_func_0(char* directory, char* name);
int main();