Formating
authorRomain Forlot <romain.forlot@iot.bzh>
Wed, 9 May 2018 09:59:19 +0000 (11:59 +0200)
committerRomain Forlot <romain.forlot@iot.bzh>
Wed, 9 May 2018 09:59:19 +0000 (11:59 +0200)
Change-Id: I16ee9154f4f5a7e71af83a22899a94f00e07aa79
Signed-off-by: Romain Forlot <romain.forlot@iot.bzh>
filescan-utils.c
filescan-utils.h

index 8b70d69..d590aab 100644 (file)
@@ -27,7 +27,7 @@
 #include "filescan-utils.h"
 
 // List Avaliable Configuration Files
-PUBLIC json_object* ScanForConfig (const char* searchPath, CtlScanDirModeT mode, const char *pre, const char *ext) {
+json_object* ScanForConfig (const char* searchPath, CtlScanDirModeT mode, const char *pre, const char *ext) {
     json_object *responseJ;
     char *dirPath;
     char* dirList= strdup(searchPath);
@@ -95,7 +95,7 @@ PUBLIC json_object* ScanForConfig (const char* searchPath, CtlScanDirModeT mode,
     return (responseJ);
 }
 
-PUBLIC const char *GetMidleName(const char*name) {
+const char *GetMidleName(const char*name) {
     char *fullname = strdup(name);
 
     for (int idx = 0; fullname[idx] != '\0'; idx++) {
@@ -114,7 +114,7 @@ PUBLIC const char *GetMidleName(const char*name) {
     return "";
 }
 
-PUBLIC const char *GetBinderName() {
+const char *GetBinderName() {
     static char *binderName=NULL;
 
     if (binderName) return binderName;
@@ -131,7 +131,7 @@ PUBLIC const char *GetBinderName() {
 }
 
 #ifndef USE_API_DYN
-PUBLIC char *GetBindingDirPath()
+char *GetBindingDirPath()
 {
     // A file description should not be greater than 999.999.999
     char fd_link[CONTROL_MAXPATH_LEN];
index 940eafd..c282c2b 100644 (file)
     #include <afb/afb-binding.h>
     extern  afb_dynapi *AFB_default;
     #define AFB_DEBUG(...) AFB_DYNAPI_DEBUG(AFB_default, __VA_ARGS__)
-#else        
+#else
     #define AFB_BINDING_VERSION 2
     #include <afb/afb-binding.h>
 #endif
-        
-#include <json-c/json.h>
 
-#ifndef PUBLIC
-  #define PUBLIC
-#endif
-#define STATIC static
+#include <json-c/json.h>
 
 #ifndef CONTROL_MAXPATH_LEN
   #define CONTROL_MAXPATH_LEN 255
@@ -53,10 +48,10 @@ typedef enum {
   CTL_SCAN_RECURSIVE=1,
 } CtlScanDirModeT;
 
-PUBLIC const char *GetMidleName(const char*name);
-PUBLIC const char *GetBinderName();
-PUBLIC json_object* ScanForConfig (const char* searchPath, CtlScanDirModeT mode, const char *pre, const char *ext);
-PUBLIC char *GetBindingDirPath();
+const char *GetMidleName(const char*name);
+const char *GetBinderName();
+json_object* ScanForConfig (const char* searchPath, CtlScanDirModeT mode, const char *pre, const char *ext);
+char *GetBindingDirPath();
 
 
 #ifdef __cplusplus