I'm trying to get a C version of this game working on my computer using gcc on ubuntu.
http://www.lemoda.net/c/boggle/boggle.html
I have no need for a pearl script or anything since I just have a simple dictionary text file and want to be able to just load in the text file and do the same thing as it would do on that site but just on my computer like a basic c program.
However when I compile it, it gives a lot of errors such as "redeclaration of bg with no linkage" and undefined reference to 'dictionary' and 'n_words' ect.
How do I get this working on my computer? What modifications do I make?
I have no experience with make files and pearl scripts and such. Are a lot of modifications needed? Or do I just need to do things using basic file in/out in C?