]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
more cleanup before I leave LAX
authorBrian West <brian@freeswitch.org>
Sun, 27 Jan 2008 17:42:51 +0000 (17:42 +0000)
committerBrian West <brian@freeswitch.org>
Sun, 27 Jan 2008 17:42:51 +0000 (17:42 +0000)
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7394 d0543943-73ff-0310-b7d9-9358b9ac24b2

src/switch_ivr_play_say.c
src/switch_loadable_module.c
src/switch_log.c
src/switch_odbc.c
src/switch_regex.c
src/switch_resample.c
src/switch_scheduler.c
src/switch_stun.c
src/switch_swig.c
src/switch_time.c
src/switch_utils.c

index 658470b3a796a584a9b8c2dbadce2ecedad0d74e..58dda917a44d7719a5f4956c9540db5bf1719480 100644 (file)
@@ -32,6 +32,7 @@
  * switch_ivr_play_say.c -- IVR Library (functions to play or say audio)
  *
  */
+
 #include <switch.h>
 
 static char *SAY_METHOD_NAMES[] = {
@@ -64,7 +65,6 @@ static char *SAY_TYPE_NAMES[] = {
        NULL
 };
 
-
 static switch_say_method_t get_say_method_by_name(char *name)
 {
        int x = 0;
@@ -89,7 +89,6 @@ static switch_say_type_t get_say_type_by_name(char *name)
        return (switch_say_type_t) x;
 }
 
-
 SWITCH_DECLARE(switch_status_t) switch_ivr_phrase_macro(switch_core_session_t *session, const char *macro_name, const char *data, const char *lang,
                                                                                                                switch_input_args_t *args)
 {
index ac5dc3d38627d7ec529f8ca894655d9b72364796..470d308a9198e8b793d7999ed256bb98b9033f04 100644 (file)
@@ -29,6 +29,7 @@
  * switch_loadable_module.c -- Loadable Modules
  *
  */
+
 #include <switch.h>
 
 /* for apr_pstrcat */
index 1685f033308674c36b824feb84f2f646e43b3b4f..66d51a36a581dc956d0e7dfe9ec08f75ab99ae22 100644 (file)
  * switch_log.c -- Logging
  *
  */
+
 #include <switch.h>
 #include "private/switch_core_pvt.h"
 
-
 static const char *LEVELS[] = {
        "CONSOLE",
        "ALERT",
index a9d38b044500ddd2f6a8c9f34032a1cc034b3840..c75fbc9ca4b605941587a83e66980c025d5a15dd 100644 (file)
@@ -28,6 +28,7 @@
  * switch_odbc.c -- ODBC
  *
  */
+
 #include <switch.h>
 #include <switch_odbc.h>
 
index 146da45fa6deb98405aed72267d95d3932cd7582..667ac438407fac2ee6cc2896e84180e7309e4952 100644 (file)
@@ -33,7 +33,6 @@
 #include <switch.h>
 #include <pcre.h>
 
 SWITCH_DECLARE(switch_regex_t *) switch_regex_compile(const char *pattern,
                                                                                                                 int options, const char **errorptr, int *erroroffset, 
 const unsigned char *tables) 
@@ -43,7 +42,6 @@ return pcre_compile(pattern, options, errorptr, erroroffset, tables);
 
 }
 
-
 SWITCH_DECLARE(int) switch_regex_copy_substring(const char *subject, int *ovector, int stringcount, int stringnumber, char *buffer, int size)
 {
        return pcre_copy_substring(subject, ovector, stringcount, stringnumber, buffer, size);
index 0b0e604c05d0795527556c9fedc4b19422a0f99f..cda04240747fad7bbb2ef15508201e0beb700067 100644 (file)
@@ -29,6 +29,7 @@
  * switch_caller.c -- Caller Identification
  *
  */
+
 #include <switch.h>
 #include <switch_resample.h>
 #ifndef WIN32
@@ -50,8 +51,6 @@
 #define MAX(a,b) ((a) > (b) ? (a) : (b))
 #endif
 
-
-
 SWITCH_DECLARE(switch_status_t) switch_resample_create(switch_audio_resampler_t **new_resampler,
                                                                                                           int from_rate, switch_size_t from_size, int to_rate, uint32_t to_size, switch_memory_pool_t *pool)
 {
index a46ac0f68956a312157cf9a2de27bc3512338bb9..5ac1105126c25d7019a7b40d271dccb7124ac973 100644 (file)
@@ -29,8 +29,8 @@
  * switch_scheduler.c -- Switch Scheduler 
  *
  */
-#include <switch.h>
 
+#include <switch.h>
 
 struct switch_scheduler_task_container {
        switch_scheduler_task_t task;
@@ -45,7 +45,6 @@ struct switch_scheduler_task_container {
 };
 typedef struct switch_scheduler_task_container switch_scheduler_task_container_t;
 
-
 static struct {
        switch_scheduler_task_container_t *task_list;
        switch_mutex_t *task_mutex;
index 37e6f973bbd15c848bd68dd2be73d420d6d8d41a..817324a5faac3e6634fbee734faf838a397f21ec 100644 (file)
@@ -30,6 +30,7 @@
  * switch_stun.c STUN (Simple Traversal of UDP over NAT)
  *
  */
+
 #include <switch.h>
 #include <switch_stun.h>
 
index 83e00fbfa561fda4498f8b177bb7c09600e96fdc..e5e81ba13b6aaccc2642965f43678262fbee6c82 100644 (file)
@@ -34,8 +34,6 @@
 #pragma warning (disable:1418)
 #endif
 
-
-
 #ifdef _MSC_VER
 #include <php.h>
 #pragma comment(lib, PHP_LIB)
index 783f5255a3466592a86ec859e2d59ca8e94bbe61..e735789909654af840fd908daba2d2910e3b6871 100644 (file)
@@ -29,6 +29,7 @@
  * softtimer.c -- Software Timer Module
  *
  */
+
 #include <switch.h>
 #include <stdio.h>
 #include "private/switch_core_pvt.h"
@@ -39,7 +40,6 @@
 
 #define MAX_TICK UINT32_MAX - 1024
 
-
 static switch_memory_pool_t *module_pool = NULL;
 
 static struct {
index d3b4efcb00030133e449f254ec6e83f4e7fbf94f..3af7769c717a031bddf215319b85e1bde50717bd 100644 (file)
@@ -30,6 +30,7 @@
  * switch_utils.c -- Compatability and Helper Code
  *
  */
+
 #include <switch.h>
 #ifndef WIN32
 #include <arpa/inet.h>