Removed unnecessary functions
parent
ace4e3c8e5
commit
70ecbae964
@ -1,21 +1,12 @@
|
|||||||
|
|
||||||
|
|
||||||
/* If the message contains a string of the form:
|
|
||||||
TO: <Username>
|
|
||||||
then return 'Username' */
|
|
||||||
char* fetch_dest_user_string(char* message);
|
|
||||||
|
|
||||||
/* If the message contains a string of the form:
|
|
||||||
IAM: <Username>
|
|
||||||
then return 'Username' */
|
|
||||||
char* fetch_sender_user_string(char* message);
|
|
||||||
|
|
||||||
/* If the message contains a string of the form:
|
/* If the message contains a string of the form:
|
||||||
<Indicator>: <Value>
|
<Indicator>: <Value>
|
||||||
Then return 'value' */
|
Then return 'value' */
|
||||||
char* fetch_generic_string(char* indicator, char* message);
|
char* fetch_from_string(char* message, char* indicator);
|
||||||
|
|
||||||
/* If the message contains a string of the form:
|
/* If the message contains a string of the form:
|
||||||
START_OF_MESSAGE
|
START_OF_MESSAGE
|
||||||
<text>
|
<text>
|
||||||
END_OF_MESSAGE
|
END_OF_MESSAGE
|
||||||
|
Then return <text> */
|
||||||
|
char* fetch_message_string(char* message);
|
||||||
|
Loading…
Reference in New Issue