Error communication between functions in C using linked list
There are functions in different files in my C program between which I want to communicate errors. For example:
MEMOERY_ALLOCATION_FAILED
, FILE_OPENING_FAILED
or NAME_NOT_VALID
.
Have I missed something?
I’m just writing some quick number guessing game code, but I keep running into the “Expected Unqualified id” error.