~ubuntu-branches/debian/jessie/smstools/jessie

« back to all changes in this revision

Viewing changes to src/pdu.h

  • Committer: Bazaar Package Importer
  • Author(s): Jan Wagner
  • Date: 2010-06-21 10:19:52 UTC
  • mfrom: (1.1.11 upstream)
  • Revision ID: james.westby@ubuntu.com-20100621101952-pz5h5zctan8vumbi
Tags: 3.1.10-0.1
* Non-maintainer upload, as requested by maintainer
* New Upstream version (Closes: #586643)
* Bump Standards to 3.8.4, no changes needed
* Define source format 1.0 in debian/source/format
* Add $remote_fs as dependency for Required-Start and Required-Stop in the
  init script, removed $local_fs, which is implicit

Show diffs side-by-side

added added

removed removed

Lines of Context:
73
73
 
74
74
int explain_toa(char *dest, char *octet_char, int octet_int);
75
75
 
76
 
int get_pdu_details(char *dest, int size_dest, char *pdu, int mnumber);
 
76
int get_pdu_details(char *dest, size_t size_dest, char *pdu, int mnumber);
77
77
void sort_pdu_details(char *dest);
78
78
 
 
79
int pdu2text(char *pdu, char *text, int *text_length, int *expected_length,
 
80
             int with_udh, char *udh, char *udh_type, int *errorpos);
 
81
int text2pdu(char* text, int length, char* pdu, char* udh);
 
82
 
79
83
#endif