From 9fcc6f27fb2cf8cf5c30b701cb6788fc8f70cf82 Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Wed, 8 Aug 2012 12:16:40 -0700 Subject: Change strupper_m() to return a value. --- source3/include/proto.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/include') diff --git a/source3/include/proto.h b/source3/include/proto.h index ebb76effac..bdb20bf8ff 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -702,7 +702,7 @@ char *strrchr_m(const char *s, char c); char *strnrchr_m(const char *s, char c, unsigned int n); char *strstr_m(const char *src, const char *findstr); void strlower_m(char *s); -void strupper_m(char *s); +bool strupper_m(char *s); size_t strlen_m(const char *s); size_t strlen_m_term(const char *s); size_t strlen_m_term_null(const char *s); -- cgit