summaryrefslogtreecommitdiff
path: root/src/utils/base64.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-12-18 01:11:54 +0300
committerAndrei Karas <akaras@inbox.ru>2013-12-18 01:11:54 +0300
commit479e48f8e65ffdbc6ceae3189e71ac40b5d85d8e (patch)
tree431ada6dbe3df72b21d471af31ff10acc8711ba5 /src/utils/base64.h
parent3d5c3d9618096e1a5995d7df2bd3e4098b3c5bd4 (diff)
downloadplus-479e48f8e65ffdbc6ceae3189e71ac40b5d85d8e.tar.gz
plus-479e48f8e65ffdbc6ceae3189e71ac40b5d85d8e.tar.bz2
plus-479e48f8e65ffdbc6ceae3189e71ac40b5d85d8e.tar.xz
plus-479e48f8e65ffdbc6ceae3189e71ac40b5d85d8e.zip
add restrict into base64.
Diffstat (limited to 'src/utils/base64.h')
-rw-r--r--src/utils/base64.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/utils/base64.h b/src/utils/base64.h
index 6ebac7983..0e6546df5 100644
--- a/src/utils/base64.h
+++ b/src/utils/base64.h
@@ -32,9 +32,9 @@
#include "localconsts.h"
-extern unsigned char *php3_base64_encode(const unsigned char *,
- int, int *) A_WARN_UNUSED;
-extern unsigned char *php3_base64_decode(const unsigned char *,
- int, int *) A_WARN_UNUSED;
+extern unsigned char *php3_base64_encode(const unsigned char *restrict,
+ int, int *restrict) A_WARN_UNUSED;
+extern unsigned char *php3_base64_decode(const unsigned char *restrict,
+ int, int *restrict ) A_WARN_UNUSED;
#endif // UTILS_BASE64_H