Skip to content

Commit

Permalink
Merge pull request #805 from anchaldubey123/main
Browse files Browse the repository at this point in the history
added code i drpepper
  • Loading branch information
sachinkumar911 authored Oct 25, 2023
2 parents 5a720c6 + f4e30ca commit 053a90e
Showing 1 changed file with 10 additions and 11 deletions.
21 changes: 10 additions & 11 deletions Fonts/drpepper/drpepper.h
Original file line number Diff line number Diff line change
Expand Up @@ -401,17 +401,16 @@ character[3][4] = '/';
}
*/

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

/*
char **j()
Expand Down

0 comments on commit 053a90e

Please sign in to comment.