A small library for implementing colors and text styling.
Go to file
2023-05-11 12:10:13 -04:00
man v2 2023-05-11 12:10:13 -04:00
src v2 2023-05-11 12:10:13 -04:00
config.mk fix issues with make 2023-03-30 13:08:30 -04:00
LICENSE init 2023-03-30 10:05:31 -04:00
Makefile v2 2023-05-11 12:10:13 -04:00
README v2 2023-05-11 12:10:13 -04:00

+ libcolor

A library to style programs with command-line interaction.

+ Usage

	#include <color.h>
	#include <stdio.h>

	int
	main()
	{
		printf(COL_RED "red\n" COL_RESET);
		printf(COL_BLUE "blue\n" COL_RESET);
		printf(COL_GREEB "green\n" COL_RESET);
	}

+ Installation

Run 'make install' to install the header file. It will install info $(PREFIX)/include.