aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Christian Hesse <mail@eworm.de>2015-05-31 21:22:24 +0200
committerGravatar Christian Hesse <mail@eworm.de>2015-05-31 21:22:24 +0200
commit4068df2b833303079f78adad0de25cc00674fa27 (patch)
tree9482e5b45bf3c612b877baa68935ae239906862b
parentf9ec19ff696b08880d4ecb5b4daccf146fec375a (diff)
downloadudev-block-notify-4068df2b833303079f78adad0de25cc00674fa27.tar.gz
udev-block-notify-4068df2b833303079f78adad0de25cc00674fa27.tar.zst
add comments to header file
-rw-r--r--udev-block-notify.h16
1 files changed, 13 insertions, 3 deletions
diff --git a/udev-block-notify.h b/udev-block-notify.h
index da3c2ba..a0b0998 100644
--- a/udev-block-notify.h
+++ b/udev-block-notify.h
@@ -28,9 +28,19 @@ struct notifications {
struct notifications *next;
};
-NotifyNotification * get_notification(struct notifications *notifications, dev_t devnum);
-char * newstr(const char *text, char *device, unsigned short int major, unsigned short int minor);
-char * appendstr(const char *text, char *notifystr, char *property, const char *value);
+/*** get_notification ***/
+NotifyNotification * get_notification(struct notifications *notifications,
+ dev_t devnum);
+
+/*** newstr ***/
+char * newstr(const char *text, char *device, unsigned short int major,
+ unsigned short int minor);
+
+/*** appendstr ***/
+char * appendstr(const char *text, char *notifystr, char *property,
+ const char *value);
+
+/*** main ***/
int main (int argc, char ** argv);
#endif /* UDEV_BLOCK_NOTIFY_H */