Skip to content

Commit

Permalink
added K to drpepper
Browse files Browse the repository at this point in the history
  • Loading branch information
sakshidewangan authored Oct 25, 2023
1 parent 67158bd commit be71df3
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions Fonts/drpepper/drpepper.h
Original file line number Diff line number Diff line change
Expand Up @@ -125,16 +125,15 @@ character[3][3] = '/';



/*
char **K()
{
char **character = getCharGrid(rows,cols);
//Enter the character grid in ROWS X COLS
return character;
}
*/
char **K()
{
char **character = getCharGrid(4, 5);
character[0][1] = character[0][3] = character[0][4] = character[3][1] = character[3][3] = '_';
character[1][0] = character[2][0] = character[3][0] = '|';
character[1][2] = character[1][4] = '/';
character[2][3] = character[3][2] = character[3][4] = '\\';
return character;
}

/*
char **L()
Expand Down

0 comments on commit be71df3

Please sign in to comment.