Hello everyone,
I'm having hard time figuring out how to split my code into 2 files.
I currently have 2 files in the project: Test.c and Font.c, Font.c contains a lot of const variables and couple of pointer arrays.
I want to be able to read the data in Font.c from the Test.c file without re-declaring everything as extern.
How can I do that ?
I'm having hard time figuring out how to split my code into 2 files.
I currently have 2 files in the project: Test.c and Font.c, Font.c contains a lot of const variables and couple of pointer arrays.
I want to be able to read the data in Font.c from the Test.c file without re-declaring everything as extern.
How can I do that ?