Skip to content

Commit

Permalink
xrCore/_std_extensions: Introduced xr_strupr().
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaffeine committed Nov 6, 2015
1 parent c15ff65 commit f8d73f8
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/xrCore/_std_extensions.h
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,11 @@ IC u32 xr_strlen(const char* S)
return (u32)strlen(S);
}

IC char* xr_strupr(char *S)
{
return _strupr(S);
}

IC char* xr_strlwr(char* S)
{
return strlwr(S);
Expand Down

0 comments on commit f8d73f8

Please sign in to comment.