rx enhancements.
[apps/madmutt.git] / lib-lib / utf8.h
1 /*
2  *  This program is free software; you can redistribute it and/or modify
3  *  it under the terms of the GNU General Public License as published by
4  *  the Free Software Foundation; either version 2 of the License, or (at
5  *  your option) any later version.
6  *
7  *  This program is distributed in the hope that it will be useful, but
8  *  WITHOUT ANY WARRANTY; without even the implied warranty of
9  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
10  *  General Public License for more details.
11  *
12  *  You should have received a copy of the GNU General Public License
13  *  along with this program; if not, write to the Free Software
14  *  Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
15  *  MA 02110-1301, USA.
16  *
17  *  Copyright © 2006 Pierre Habouzit
18  */
19
20 #ifndef MUTT_LIB_LIB_UTF8_H
21 #define MUTT_LIB_LIB_UTF8_H
22
23 /** \addtogroup mutt_strings */
24 /*@{*/
25
26 int m_ustrlen(const char *s);
27 int m_ustrgetc(const char *s, const char **outp);
28 int m_ustrputc(char *dst, ssize_t n, int c);
29
30 static inline char *m_vustrskipc(char *s) {
31     if (*s++ & 0x80) {
32         while ((*s & 0xc0) == 0x80)
33             s++;
34     }
35     return s;
36 }
37
38 static inline const char *m_ustrskipc(const char *s) {
39     return m_vustrskipc((char *)s);
40 }
41
42
43 /*@}*/
44 #endif /* MUTT_LIB_LIB_UTF8_H */