aboutsummaryrefslogtreecommitdiffstats
path: root/include/osmocore/utils.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/osmocore/utils.h')
-rw-r--r--include/osmocore/utils.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/osmocore/utils.h b/include/osmocore/utils.h
index 6fe1b388..0cdf03b8 100644
--- a/include/osmocore/utils.h
+++ b/include/osmocore/utils.h
@@ -24,4 +24,7 @@ char *ubit_dump(const uint8_t *bits, unsigned int len);
#define static_assert(exp, name) typedef int dummy##name [(exp) ? 1 : -1];
+void osmo_str2lower(char *out, const char *in);
+void osmo_str2upper(char *out, const char *in);
+
#endif