Why are function declarations in the header files in /src/?
Solution: Only function prototypes should be in .h files... Remove the declaration, and add it to main.c, leaving only the function prototypes in the header files.
Alternative Solution: Change the .h files to plain old .c files.
Sincerely,
NerdOfCode
Why are function declarations in the header files in
/src/?Solution: Only function prototypes should be in
.hfiles... Remove the declaration, and add it tomain.c, leaving only the function prototypes in the header files.Alternative Solution: Change the
.hfiles to plain old.cfiles.Sincerely,
NerdOfCode