We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Very minimal library: one header + one C source file
min.h: int min(int a, int b);
min.c: int min(int a, int b) { return a<b ? a : b; }
Add a makefile that creates a static library (libmin.a) our of the given files.
This will be used as a working library of C code to import.
The text was updated successfully, but these errors were encountered:
Gabriel29
No branches or pull requests
Very minimal library: one header + one C source file
min.h:
int min(int a, int b);
min.c:
int min(int a, int b) {
return a<b ? a : b;
}
Add a makefile that creates a static library (libmin.a) our of the given files.
This will be used as a working library of C code to import.
The text was updated successfully, but these errors were encountered: