diff options
author | Aleksander Morgado <aleksander@aleksander.es> | 2017-08-16 15:43:34 +0200 |
---|---|---|
committer | Aleksander Morgado <aleksander@aleksander.es> | 2017-08-16 16:08:15 +0200 |
commit | 1f2bb640284ef75e411658a3ff67f844bea8b260 (patch) | |
tree | 564ffa2a62e90769c9d6e054a8a8c4da52a49163 /src/mm-charsets.h | |
parent | 06fef77cc03f700c6570bda6728b8caeef0356a7 (diff) |
charsets: ensure all methods are prefixed with 'mm_'
Diffstat (limited to 'src/mm-charsets.h')
-rw-r--r-- | src/mm-charsets.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mm-charsets.h b/src/mm-charsets.h index a85f3dc7..c0b309e3 100644 --- a/src/mm-charsets.h +++ b/src/mm-charsets.h @@ -62,15 +62,15 @@ guint mm_charset_get_encoded_len (const char *utf8, MMModemCharset charset, guint *out_unsupported); -guint8 *gsm_unpack (const guint8 *gsm, - guint32 num_septets, - guint8 start_offset, /* in bits */ - guint32 *out_unpacked_len); - -guint8 *gsm_pack (const guint8 *src, - guint32 src_len, - guint8 start_offset, /* in bits */ - guint32 *out_packed_len); +guint8 *mm_charset_gsm_unpack (const guint8 *gsm, + guint32 num_septets, + guint8 start_offset, /* in bits */ + guint32 *out_unpacked_len); + +guint8 *mm_charset_gsm_pack (const guint8 *src, + guint32 src_len, + guint8 start_offset, /* in bits */ + guint32 *out_packed_len); gchar *mm_charset_take_and_convert_to_utf8 (gchar *str, MMModemCharset charset); |