aboutsummaryrefslogtreecommitdiffstats
path: root/samsung-ipc/call.c
diff options
context:
space:
mode:
authorPaul Kocialkowski <contact@paulk.fr>2013-06-25 22:29:03 +0200
committerPaul Kocialkowski <contact@paulk.fr>2013-06-25 22:29:03 +0200
commit30ba6fd8cd5cf14ebdcd1738bb8972149f764054 (patch)
treef5d0a133b43c59470629deaaa9efef7729f73e11 /samsung-ipc/call.c
parentc9dfae7a17ea4e5a2e114df331942f70d48bfe5b (diff)
downloadexternal_libsamsung-ipc-30ba6fd8cd5cf14ebdcd1738bb8972149f764054.zip
external_libsamsung-ipc-30ba6fd8cd5cf14ebdcd1738bb8972149f764054.tar.gz
external_libsamsung-ipc-30ba6fd8cd5cf14ebdcd1738bb8972149f764054.tar.bz2
Add newline and indentation on long functions names
Change-Id: Ie393301a04523816e7aa674e57a4c3a2eb93247e Signed-off-by: Paul Kocialkowski <contact@paulk.fr>
Diffstat (limited to 'samsung-ipc/call.c')
-rw-r--r--samsung-ipc/call.c12
1 files changed, 8 insertions, 4 deletions
diff --git a/samsung-ipc/call.c b/samsung-ipc/call.c
index ee7ef89..74da569 100644
--- a/samsung-ipc/call.c
+++ b/samsung-ipc/call.c
@@ -26,7 +26,8 @@
#define OUTGOING_NUMBER_MAX_LENGTH 86
-void ipc_call_outgoing_setup(struct ipc_call_outgoing *message, unsigned char type, unsigned char identity, unsigned char prefix, char *number)
+void ipc_call_outgoing_setup(struct ipc_call_outgoing *message, unsigned char type,
+ unsigned char identity, unsigned char prefix, char *number)
{
int length;
@@ -57,7 +58,8 @@ unsigned int ipc_call_list_response_get_num_entries(struct ipc_message_info *res
}
/* Retrieve one specific entry from a list of calls */
-struct ipc_call_list_entry* ipc_call_list_response_get_entry(struct ipc_message_info *response, unsigned int num)
+struct ipc_call_list_entry* ipc_call_list_response_get_entry(struct ipc_message_info *response,
+ unsigned int num)
{
unsigned int count, pos, n;
struct ipc_call_list_entry *entry = NULL;
@@ -77,7 +79,8 @@ struct ipc_call_list_entry* ipc_call_list_response_get_entry(struct ipc_message_
}
/* Retrieve the number of a call entry in the list of calls */
-char *ipc_call_list_response_get_entry_number(struct ipc_message_info *response, unsigned int num)
+char *ipc_call_list_response_get_entry_number(struct ipc_message_info *response,
+ unsigned int num)
{
unsigned int count, pos, n;
struct ipc_call_list_entry *entry = NULL;
@@ -106,7 +109,8 @@ char *ipc_call_list_response_get_entry_number(struct ipc_message_info *response,
return number;
}
-unsigned char *ipc_call_cont_dtmf_burst_pack(struct ipc_call_cont_dtmf *message, unsigned char *burst, int burst_len)
+unsigned char *ipc_call_cont_dtmf_burst_pack(struct ipc_call_cont_dtmf *message,
+ unsigned char *burst, int burst_len)
{
unsigned char *data = NULL;
int data_len = sizeof(struct ipc_call_cont_dtmf) + burst_len;