Created
March 1, 2013 14:25
-
-
Save moret/5064979 to your computer and use it in GitHub Desktop.
hello_lib
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#include <stdio.h> | |
#include <my_lib.h> | |
int main(void) { | |
printf("%s", my_function()); | |
} | |
/* | |
Build me with: | |
gcc hello.c -L../basic_c_lib/bin/ -I../basic_c_lib/src/ -lmy_lib -o hello | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment