aboutsummaryrefslogtreecommitdiffstats
path: root/conditions.h
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2013-11-16 03:16:57 +0000
committerBill Meier <wmeier@newsguy.com>2013-11-16 03:16:57 +0000
commit4fae219edf8482f8052d6cc5c8220ac7e5a27831 (patch)
tree9fe261db9e78c4c54fb7fd97557d56f29ce8a544 /conditions.h
parenta848b341ac8b02ae8ebaeb7b96a673caff73a71e (diff)
Reformat some lines;
Tweak some whitespace. svn path=/trunk/; revision=53361
Diffstat (limited to 'conditions.h')
-rw-r--r--conditions.h46
1 files changed, 23 insertions, 23 deletions
diff --git a/conditions.h b/conditions.h
index 79c2cfad3d..018f16d9a5 100644
--- a/conditions.h
+++ b/conditions.h
@@ -33,61 +33,61 @@
typedef struct condition condition;
/* condition evaluation handler type */
-typedef gboolean (*_cnd_eval)(condition*, va_list);
+typedef gboolean (*_cnd_eval)(condition *, va_list);
/* condition reset handler type */
-typedef void (*_cnd_reset)(condition*);
+typedef void (*_cnd_reset)(condition *);
/* condition class constructor type */
-typedef condition* (*_cnd_constr)(condition*, va_list);
+typedef condition *(*_cnd_constr)(condition *, va_list);
/* condition class destructor type */
-typedef void (*_cnd_destr)(condition*);
+typedef void (*_cnd_destr)(condition *);
/*
* Conditions must be created with this function. They can be created for
* registered classes only.
*
- * parameter: const char* - Identification of a registered condition class.
- * ... - Any number of class specific initial values.
+ * parameter: const char * - Identification of a registered condition class.
+ * ... - Any number of class specific initial values.
* returns: Pointer to a initialized condition of the particular class on
* success or NULL on failure.
*/
-condition* cnd_new(const char*, ...);
+condition *cnd_new(const char *, ...);
/*
* Conditions must be deleted with this function when not used anymore.
*
- * parameter: condition* - Pointer to a condition created with 'cnd_new()'.
+ * parameter: condition * - Pointer to a condition created with 'cnd_new()'.
* returns: -
*/
-void cnd_delete(condition*);
+void cnd_delete(condition *);
/*
* Call this function to check whether or not a particular condition is true.
*
- * parameter: condition* - Pointer to an initialized condition.
- * ... - Any number of condition specific arguments.
+ * parameter: condition * - Pointer to an initialized condition.
+ * ... - Any number of condition specific arguments.
* returns: TRUE - Condition is true.
* FALSE - Condition is false.
*/
-gboolean cnd_eval(condition*, ...);
+gboolean cnd_eval(condition *, ...);
/*
* Call this function to reset this condition to its initial state, i.e. the
* state it was in right after creation.
*
- * parameter: condition* - Pointer to an initialized condition.
+ * parameter: condition * - Pointer to an initialized condition.
* returns: -
*/
-void cnd_reset(condition*);
+void cnd_reset(condition *);
/*
* Register a new conditon class.
* New conditions of this class can be created by calling 'cnd_new()' and
* supplying the appropriate class id.
*
- * parameter: const char* - The class id.
+ * parameter: const char * - The class id.
* _cnd_constr - User supplied constructor function for this
* class.
* _cnd_destr - User supplied destructor function for this
@@ -98,7 +98,7 @@ void cnd_reset(condition*);
* returns: TRUE - Success.
* FALSE - Failure.
*/
-gboolean cnd_register_class(const char*,
+gboolean cnd_register_class(const char *,
_cnd_constr,
_cnd_destr,
_cnd_eval,
@@ -109,26 +109,26 @@ gboolean cnd_register_class(const char*,
* of a class it is no longer possible to create conditions of this kind by
* calling 'cnd_new()'.
*
- * parameter: const char* - An identification for this condition class.
+ * parameter: const char * - An identification for this condition class.
* returns: -
*/
-void cnd_unregister_class(const char*);
+void cnd_unregister_class(const char *);
/*
* This function returns the user data of the condition.
*
- * parameter: condition* - Pointer to an initialized condition.
- * returns: void* - Pointer to user data of this condition.
+ * parameter: condition * - Pointer to an initialized condition.
+ * returns: void * - Pointer to user data of this condition.
*/
void* cnd_get_user_data(condition*);
/*
* This function sets the user data of the condition.
*
- * parameter: condition* - Pointer to an initialized condition.
- * void* - Pointer to user specified data structure.
+ * parameter: condition * - Pointer to an initialized condition.
+ * void * - Pointer to user specified data structure.
* returns: -
*/
-void cnd_set_user_data(condition*, void*);
+void cnd_set_user_data(condition *, void *);
#endif /* CONDITIONS_H */