mraa_internal.h: clean header style
authorBrendan Le Foll <brendan.le.foll@intel.com>
Sat, 4 Apr 2015 17:50:23 +0000 (18:50 +0100)
committerBrendan Le Foll <brendan.le.foll@intel.com>
Wed, 8 Apr 2015 21:19:14 +0000 (22:19 +0100)
Signed-off-by: Brendan Le Foll <brendan.le.foll@intel.com>
include/mraa_internal.h

index 78900e9..def678b 100644 (file)
@@ -60,28 +60,30 @@ mraa_platform_t mraa_x86_platform();
 mraa_platform_t mraa_arm_platform();
 
 /**
-* helper function to check if file exists
-*
-* @param filename to check
-* @return mraa_boolean_t boolean result.
-*/
+ * helper function to check if file exists
+ *
+ * @param filename to check
+ * @return mraa_boolean_t boolean result.
+ */
 mraa_boolean_t mraa_file_exist(const char* filename);
 
 /**
-* helper function to unglob filenames
-*
-* @param filename to unglob
-* @return char * with the existing filename matching the pattern of input. NULL if there is no match. Caller must free result
-*/
+ * helper function to unglob filenames
+ *
+ * @param filename to unglob
+ * @return char * with the existing filename matching the pattern of input. NULL if there is no
+ *match. Caller must free result
+ */
 char* mraa_file_unglob(const char* filename);
 
 /**
-* helper function to find out if file that is targeted by a softlink (partially) matches the given name
-*
-* @param filename of the softlink
-* @param (partial) filename that is matched with the filename of the link-targeted file
-* @return mraa_boolean_t true when targetname (partially) matches
-*/
+ * helper function to find out if file that is targeted by a softlink
+ * (partially) matches the given name
+ *
+ * @param filename of the softlink
+ * @param (partial) filename that is matched with the filename of the link-targeted file
+ * @return mraa_boolean_t true when targetname (partially) matches
+ */
 mraa_boolean_t mraa_link_targets(const char* filename, const char* targetname);
 
 #ifdef __cplusplus