include: nxstyle fixes

fixes for nxstyle errors reported by nxstyle tool

Signed-off-by: Alin Jerpelea <alin.jerpelea@sony.com>
This commit is contained in:
Alin Jerpelea
2021-06-11 11:07:52 +02:00
committed by Xiang Xiao
parent cc37729e29
commit adc3c9fae9
17 changed files with 107 additions and 79 deletions

View File

@@ -42,15 +42,17 @@ char *url_decode(char *str);
#endif /* CONFIG_CODECS_URLCODE_NEWMEMORY */
#ifdef CONFIG_CODECS_URLCODE
char *urlencode(const char *src, const int src_len, char *dest, int *dest_len);
char *urldecode(const char *src, const int src_len, char *dest, int *dest_len);
char *urlencode(const char *src, const int src_len,
char *dest, int *dest_len);
char *urldecode(const char *src, const int src_len,
char *dest, int *dest_len);
int urlencode_len(const char *src, const int src_len);
int urldecode_len(const char *src, const int src_len);
#endif /* CONFIG_CODECS_URLCODE */
#ifdef CONFIG_CODECS_AVR_URLCODE
void urlrawdecode(char *urlbuf);
void urlrawencode(char *str,char *urlbuf);
void urlrawencode(char *str, char *urlbuf);
#endif /* CONFIG_CODECS_AVR_URLCODE */
#ifdef __cplusplus