Skip to content

Commit f8d73f8

Browse files
committed
xrCore/_std_extensions: Introduced xr_strupr().
1 parent c15ff65 commit f8d73f8

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/xrCore/_std_extensions.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,11 @@ IC u32 xr_strlen(const char* S)
189189
return (u32)strlen(S);
190190
}
191191

192+
IC char* xr_strupr(char *S)
193+
{
194+
return _strupr(S);
195+
}
196+
192197
IC char* xr_strlwr(char* S)
193198
{
194199
return strlwr(S);

0 commit comments

Comments
 (0)