diff options
author | Jeremy Allison <jra@samba.org> | 2012-08-08 12:16:40 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2012-08-09 09:47:35 -0700 |
commit | 9fcc6f27fb2cf8cf5c30b701cb6788fc8f70cf82 (patch) | |
tree | 68998f6bfdf92939f26690901fc9b7fb34a1bf4a /source3/include | |
parent | af3e529c18dae94d10b617eb8377e2ab64d34982 (diff) | |
download | samba-9fcc6f27fb2cf8cf5c30b701cb6788fc8f70cf82.tar.gz samba-9fcc6f27fb2cf8cf5c30b701cb6788fc8f70cf82.tar.bz2 samba-9fcc6f27fb2cf8cf5c30b701cb6788fc8f70cf82.zip |
Change strupper_m() to return a value.
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/proto.h | 2 |
1 files changed, 1 insertions, 1 deletions
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); |