diff options
| author | iceyrazor <iceyrazor@mailfence.com> | 2026-07-03 22:02:56 -0500 |
|---|---|---|
| committer | iceyrazor <iceyrazor@mailfence.com> | 2026-07-03 22:02:56 -0500 |
| commit | 0ed6c602b14554a02f7782bd5e5635b1e9d9c195 (patch) | |
| tree | 54142376e4cedd1aeec259f811c04a2420a3213f /src/config.def.c | |
init
Diffstat (limited to 'src/config.def.c')
| -rw-r--r-- | src/config.def.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/config.def.c b/src/config.def.c new file mode 100644 index 0000000..90004de --- /dev/null +++ b/src/config.def.c @@ -0,0 +1,15 @@ +#ifndef config +#define config + +#define arr_size 3 //change this to how many messages you want to cycle through + +char *title="title"; //change the title here +char *arr[arr_size]; + +void init_arr(){ + arr[0]="message 1"; //copy and paste this then change the number to the message your editing + arr[1]="message 2"; + arr[2]="message 3"; +} + +#endif |
