Skip to content

Commit

Permalink
Update test.c
Browse files Browse the repository at this point in the history
  • Loading branch information
ManojTGN authored May 24, 2024
1 parent a4b75ef commit 3f73e32
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions test/test.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,9 @@
int main(){

//YEL RESET
assert( strcmp(YEL, "\x1b[33m")== 0 );
assert( strcmp(RESET,"\x1b[0m" )== 0 );
assert( strcmp(YEL, "\x1B[38;5;172m")== 0 );
assert( strcmp(GRAY, "\x1B[38;5;243m")== 0 );
assert( strcmp(RESET, "\x1b[0m")== 0 );

// isHex()
assert( isHex("0x00") == true );
Expand Down

0 comments on commit 3f73e32

Please sign in to comment.