diff options
author | Mattias Andrée <maandree@kth.se> | 2017-11-05 00:09:50 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2017-11-05 00:09:50 +0100 |
commit | 9e8dec188d55ca1f0a3b33acab702ced8ed07a18 (patch) | |
tree | cbb43c22e72674dc672e645e6596358e3868568e /src/mds-clipboard.h | |
parent | typo (diff) | |
download | mds-9e8dec188d55ca1f0a3b33acab702ced8ed07a18.tar.gz mds-9e8dec188d55ca1f0a3b33acab702ced8ed07a18.tar.bz2 mds-9e8dec188d55ca1f0a3b33acab702ced8ed07a18.tar.xz |
Work on changing style, and an important typo fix
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to '')
-rw-r--r-- | src/mds-clipboard.h | 61 |
1 files changed, 30 insertions, 31 deletions
diff --git a/src/mds-clipboard.h b/src/mds-clipboard.h index 5c13d25..e35d5cc 100644 --- a/src/mds-clipboard.h +++ b/src/mds-clipboard.h @@ -54,38 +54,38 @@ */ typedef struct clipitem { - /** - * The stored content - */ - char* content; - - /** - * The length of the stored content - */ - size_t length; - - /** - * Time of planned death if `autopurge` is `CLIPITEM_AUTOPURGE_UPON_CLOCK` - */ - struct timespec dethklok; - - /** - * The client that issued the inclusion of this entry - */ - uint64_t client; - - /** - * Rule for automatic deletion - */ - int autopurge; - + /** + * The stored content + */ + char *content; + + /** + * The length of the stored content + */ + size_t length; + + /** + * Time of planned death if `autopurge` is `CLIPITEM_AUTOPURGE_UPON_CLOCK` + */ + struct timespec dethklok; + + /** + * The client that issued the inclusion of this entry + */ + uint64_t client; + + /** + * Rule for automatic deletion + */ + int autopurge; + } clipitem_t; /** * The number of levels in the clipboard */ -#define CLIPBOARD_LEVELS 3 +#define CLIPBOARD_LEVELS 3 @@ -110,7 +110,7 @@ int clipboard_danger(void); * @return Zero on success, -1 on error */ __attribute__((nonnull)) -int clipboard_death(const char* recv_client_id); +int clipboard_death(const char *recv_client_id); /** * Add a new entry to the clipboard @@ -121,7 +121,7 @@ int clipboard_death(const char* recv_client_id); * @return Zero on success, -1 on error */ __attribute__((nonnull)) -int clipboard_add(int level, const char* time_to_live, const char* recv_client_id); +int clipboard_add(int level, const char *time_to_live, const char *recv_client_id); /** * Read an entry to the clipboard @@ -133,7 +133,7 @@ int clipboard_add(int level, const char* time_to_live, const char* recv_client_i * @return Zero on success, -1 on error */ __attribute__((nonnull)) -int clipboard_read(int level, size_t index, const char* recv_client_id, const char* recv_message_id); +int clipboard_read(int level, size_t index, const char *recv_client_id, const char *recv_message_id); /** * Clear a clipstack @@ -161,8 +161,7 @@ int clipboard_set_size(int level, size_t size); * @return Zero on success, -1 on error */ __attribute__((nonnull)) -int clipboard_get_size(int level, const char* recv_client_id, const char* recv_message_id); +int clipboard_get_size(int level, const char *recv_client_id, const char *recv_message_id); #endif - |