Computer Science Canada mingw header source files? |
Author: | matt271 [ Tue Apr 21, 2009 4:30 pm ] |
Post subject: | mingw header source files? |
any1 know the default location for the mingw header source files?? i tried searching for it but i dont think im searching the right word. 'header file' finds me the .h files which have no source code. they r just like abstract classes in java. i want the source code itself. can anybody tell me what this is called? ty |
Author: | saltpro15 [ Tue Apr 21, 2009 4:39 pm ] |
Post subject: | RE:mingw header source files? |
should be C:\Program Files\MinGW\bin if that doesn't work, get rid of the /bin |
Author: | matt271 [ Tue Apr 21, 2009 6:35 pm ] |
Post subject: | RE:mingw header source files? |
is the bin not the binary files? im looking for the header source files. like i wanna see the code for strcat in string.h but the string.h file only has the function header. |
Author: | wtd [ Tue Apr 21, 2009 8:11 pm ] |
Post subject: | RE:mingw header source files? |
That's what header files are for. They simply contain code that tells the C compiler how strcat is supposed to be called, and what it returns. |
Author: | saltpro15 [ Tue Apr 21, 2009 8:30 pm ] |
Post subject: | RE:mingw header source files? |
oh sorry, I must have misunderstood you |