comparison util.h @ 655:68994cb1f1a6

Cosmetics.
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 28 Jan 2015 13:04:19 +0200
parents 97a49a6cc959
children 10c05931dfe5
comparison
equal deleted inserted replaced
654:9c2ae1b96674 655:68994cb1f1a6
1 /* 1 /*
2 * NNChat - Custom chat client for NewbieNudes.com chatrooms 2 * NNChat - Custom chat client for NewbieNudes.com chatrooms
3 * Written by Matti 'ccr' Hämäläinen 3 * Written by Matti 'ccr' Hämäläinen
4 * (C) Copyright 2008-2013 Tecnic Software productions (TNSP) 4 * (C) Copyright 2008-2015 Tecnic Software productions (TNSP)
5 */ 5 */
6 #ifndef LIBNNUTIL_H 6 #ifndef LIBNNUTIL_H
7 #define LIBNNUTIL_H 7 #define LIBNNUTIL_H
8 8
9 #include <stdio.h> 9 #include <stdio.h>
42 42
43 char * nn_encode_str1(const char *str); 43 char * nn_encode_str1(const char *str);
44 char * nn_decode_str1(const char *str); 44 char * nn_decode_str1(const char *str);
45 char * nn_encode_str2(const char *str); 45 char * nn_encode_str2(const char *str);
46 char * nn_decode_str2(const char *str); 46 char * nn_decode_str2(const char *str);
47 char * nn_strip_tags(const char *str);
48 char * nn_dbldecode_str(const char *str); 47 char * nn_dbldecode_str(const char *str);
49 char * nn_dblencode_str(const char *str); 48 char * nn_dblencode_str(const char *str);
49
50 char * nn_strip_tags(const char *str);
50 51
51 char * nn_username_encode(char *str); 52 char * nn_username_encode(char *str);
52 char * nn_username_decode(char *str); 53 char * nn_username_decode(char *str);
53 54
54 55