summaryrefslogtreecommitdiffstats
path: root/src/smsutil.h
diff options
context:
space:
mode:
authorDenis Kenzior <denkenz@gmail.com>2009-06-05 13:29:03 -0500
committerDenis Kenzior <denkenz@gmail.com>2009-06-05 19:58:09 -0500
commit58466889880ae54aeb59a1f6aff5d46cf2f9f761 (patch)
treeb7984362037f038e7a0eb8f2de4e1f54720938cc /src/smsutil.h
parent4f0c149162c73044a725f7966e1ed29f9ece4271 (diff)
downloadofono-58466889880ae54aeb59a1f6aff5d46cf2f9f761.tar.bz2
Rename sms utilities properly
Rename encode_sms to sms_encode Rename decode_sms to sms_decode
Diffstat (limited to 'src/smsutil.h')
-rw-r--r--src/smsutil.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/smsutil.h b/src/smsutil.h
index 13b70edb..2c42bd56 100644
--- a/src/smsutil.h
+++ b/src/smsutil.h
@@ -295,10 +295,10 @@ struct sms_udh_iter {
guint8 offset;
};
-gboolean decode_sms(const unsigned char *pdu, int len, gboolean outgoing,
+gboolean sms_decode(const unsigned char *pdu, int len, gboolean outgoing,
int tpdu_len, struct sms *out);
-gboolean encode_sms(const struct sms *in, int *len, int *tpdu_len,
+gboolean sms_encode(const struct sms *in, int *len, int *tpdu_len,
unsigned char *pdu);
int ud_len_in_octets(guint8 ud_len, guint8 dcs);