libsheepy

C lib for handling text files, strings and json like data structure with an object oriented system
git clone https://spartatek.se/git/libsheepy.git
Log | Files | Refs | README | LICENSE

commit c4932f6a889cc7021aa2d059990ece9b0b27e613
parent aa218df8385a08b6cd2897f9fd927fd3fab04d31
Author: Remy Noulin <loader2x@gmail.com>
Date:   Sun,  4 Dec 2022 21:00:38 +0200

add italic and blink terminal effects

release/libsheepy.h | 4 ++++
src/libsheepy.h     | 4 ++++
2 files changed, 8 insertions(+)

Diffstat:
Mrelease/libsheepy.h | 4++++
Msrc/libsheepy.h | 4++++
2 files changed, 8 insertions(+), 0 deletions(-)

diff --git a/release/libsheepy.h b/release/libsheepy.h @@ -756,8 +756,12 @@ void cleanUpFileFree(FILE **val); #define BLD "\x1B[1m" /** faint */ #define FNT "\x1B[2m" +/** italic */ +#define ITL "\x1B[3m" /** underline for color function */ #define UDL "\x1B[4m" +/** blink */ +#define BLI "\x1B[2m" /** inverse for color function */ #define INV "\x1B[7m" /** conceal/hidden for color function */ diff --git a/src/libsheepy.h b/src/libsheepy.h @@ -756,8 +756,12 @@ void cleanUpFileFree(FILE **val); #define BLD "\x1B[1m" /** faint */ #define FNT "\x1B[2m" +/** italic */ +#define ITL "\x1B[3m" /** underline for color function */ #define UDL "\x1B[4m" +/** blink */ +#define BLI "\x1B[2m" /** inverse for color function */ #define INV "\x1B[7m" /** conceal/hidden for color function */