aboutsummaryrefslogtreecommitdiff
path: root/string.c
diff options
context:
space:
mode:
authorLuca Dariz <luca@orpolo.org>2025-01-06 14:46:49 +0100
committerSamuel Thibault <samuel.thibault@ens-lyon.org>2025-01-28 22:52:16 +0100
commitd4ed2ed7fa36a2637f6f3b352ee2875abaf27092 (patch)
tree25b83ffe225888fc235b2bc5c0e015629dbba188 /string.c
parent85c1d9860d563d8c43d95d41c51d0cbd68f93c9a (diff)
downloadmig-d4ed2ed7fa36a2637f6f3b352ee2875abaf27092.tar.gz
mig-d4ed2ed7fa36a2637f6f3b352ee2875abaf27092.tar.bz2
mig-d4ed2ed7fa36a2637f6f3b352ee2875abaf27092.zip
header: add definitions for RPC presence and IDsHEADmaster
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.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/string.c b/string.c
index e182948..eeaaba2 100644
--- a/string.c
+++ b/string.c
@@ -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;
+}