vfs: check userland buffers before reading them.
[haiku.git] / src / system / libroot / posix / string / strupr.c
blob97388d08015308e44e9f5b1bd8869541092e7908
1 /*
2 * Copyright 2008, Mika Lindqvist. All rights reserved.
3 * Distributed under the terms of the MIT License.
4 */
6 #include <ctype.h>
7 #include <string.h>
9 char *
10 strupr(char *str)
12 char *c = str;
13 while (*c) {
14 *c = toupper(*c);
15 c++;
18 return str;