diff options
author | Luca Dariz <luca@orpolo.org> | 2025-01-06 14:46:49 +0100 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2025-01-28 22:52:16 +0100 |
commit | d4ed2ed7fa36a2637f6f3b352ee2875abaf27092 (patch) | |
tree | 25b83ffe225888fc235b2bc5c0e015629dbba188 /string.c | |
parent | 85c1d9860d563d8c43d95d41c51d0cbd68f93c9a (diff) | |
download | mig-d4ed2ed7fa36a2637f6f3b352ee2875abaf27092.tar.gz mig-d4ed2ed7fa36a2637f6f3b352ee2875abaf27092.tar.bz2 mig-d4ed2ed7fa36a2637f6f3b352ee2875abaf27092.zip |
This allows to check at compilation time for some rpc (as done for
example in glibc for thread_set/get_name() and host_page_size()).
Also the IDs can be useful for testing purposes, or when assembling
messages manually.
Message-ID: <20250106134649.391487-1-luca@orpolo.org>
Diffstat (limited to 'string.c')
-rw-r--r-- | string.c | 11 |
1 files changed, 11 insertions, 0 deletions
@@ -27,6 +27,7 @@ #include <sys/types.h> #include <stdbool.h> #include <stdlib.h> +#include <ctype.h> #include "error.h" #include "mig_string.h" @@ -77,3 +78,13 @@ strstring(const_string_t string) else return string; } + +char * +strupper(const_string_t string) +{ + string_t upper = strmake(string); + + for (int i=0; i<strlen(upper); i++) + upper[i] = toupper(upper[i]); + return upper; +} |