This commit is contained in:
2023-05-11 12:10:13 -04:00
parent e7c7ec4a1d
commit c17b6b5f43
4 changed files with 24 additions and 6 deletions

10
README
View File

@@ -1,16 +1,18 @@
+ libcolor
A library to style programs with command-line interaction. Includes colors and symbols.
A library to style programs with command-line interaction.
+ Usage
#include <color.h>
#include <stdio.h>
#include "libcolor.h"
int main() {
int
main()
{
printf(COL_RED "red\n" COL_RESET);
printf(COL_BLUE "blue\n" COL_RESET);
printf(TXT_BOLd "bold\n" TXT_RESET);
printf(COL_GREEB "green\n" COL_RESET);
}
+ Installation