Skip to content

Commit

Permalink
[strtox] minor size optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
mateoconlechuga committed Nov 21, 2024
1 parent 485c958 commit 7c85d72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/libc/strtox.h
Original file line number Diff line number Diff line change
Expand Up @@ -104,10 +104,10 @@ STRTOX_TYPE STRTOX_NAME(const char *nptr, char **endptr, int base)
unsigned STRTOX_TYPE acc;
unsigned STRTOX_TYPE cutoff;
const char *s;
unsigned char cutlim;
unsigned char c;
bool neg;
char any;
unsigned char cutlim;
int c;

if (base < 0 || base > 36)
{
Expand Down

0 comments on commit 7c85d72

Please sign in to comment.