arudradey's picture
Upload folder using huggingface_hub
00df61d verified
Raw
History Blame Contribute Delete
131 Bytes
#include <ctype.h>
char *strupr(char *str)
{
char *ret = str;
while(*str)
{
*str = toupper(*str);
++str;
}
return ret;
}