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 643ad467c08674315b24d02add3fc7b8079cd20d
parent c4932f6a889cc7021aa2d059990ece9b0b27e613
Author: Remy Noulin <loader2x@gmail.com>
Date:   Mon, 26 Dec 2022 21:25:47 +0200

fix BLI blink code

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

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

diff --git a/release/libsheepy.h b/release/libsheepy.h @@ -761,7 +761,7 @@ void cleanUpFileFree(FILE **val); /** underline for color function */ #define UDL "\x1B[4m" /** blink */ -#define BLI "\x1B[2m" +#define BLI "\x1B[5m" /** inverse for color function */ #define INV "\x1B[7m" /** conceal/hidden for color function */ @@ -3392,7 +3392,7 @@ void **iListDel(void ***list, int64_t start, int64_t end) MUST_CHECK; * * this type of array has a dynamic element count * pushing elements into the array increases the element count - * poping elements only decreases the element count, call sliceFit to realoc the slice + * poping elements only decreases the element count, call sliceFit to realloc the slice * * no sanity checks are done * diff --git a/src/libsheepy.h b/src/libsheepy.h @@ -761,7 +761,7 @@ void cleanUpFileFree(FILE **val); /** underline for color function */ #define UDL "\x1B[4m" /** blink */ -#define BLI "\x1B[2m" +#define BLI "\x1B[5m" /** inverse for color function */ #define INV "\x1B[7m" /** conceal/hidden for color function */ @@ -3392,7 +3392,7 @@ void **iListDel(void ***list, int64_t start, int64_t end) MUST_CHECK; * * this type of array has a dynamic element count * pushing elements into the array increases the element count - * poping elements only decreases the element count, call sliceFit to realoc the slice + * poping elements only decreases the element count, call sliceFit to realloc the slice * * no sanity checks are done *