aboutsummaryrefslogtreecommitdiffstats
path: root/src/client.h
diff options
context:
space:
mode:
authorMattias Andrée <maandree@member.fsf.org>2015-12-25 22:06:56 +0100
committerMattias Andrée <maandree@member.fsf.org>2015-12-25 22:06:56 +0100
commit196abe367c46cf3c2337b4b1da8bb2c084065c7d (patch)
tree1c55433b9195b6c398ab3ab26a867d0b794ed806 /src/client.h
parentimprove send_command (diff)
downloadsat-196abe367c46cf3c2337b4b1da8bb2c084065c7d.tar.gz
sat-196abe367c46cf3c2337b4b1da8bb2c084065c7d.tar.bz2
sat-196abe367c46cf3c2337b4b1da8bb2c084065c7d.tar.xz
satr run select jobs + satrm can remove multiple jobs
Signed-off-by: Mattias Andrée <maandree@member.fsf.org>
Diffstat (limited to '')
-rw-r--r--src/client.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/client.h b/src/client.h
index 2e5cf9d..6a2b91b 100644
--- a/src/client.h
+++ b/src/client.h
@@ -22,6 +22,7 @@
#include <stddef.h>
+
/**
* Commands for `send_command`.
*/
@@ -49,6 +50,7 @@ enum command
};
+
/**
* Send a command to satd. Start satd if it is not running.
*
@@ -62,3 +64,21 @@ enum command
*/
int send_command(enum command cmd, size_t n, const char *restrict msg);
+
+/**
+ * Return the number of bytes required to store a string array.
+ *
+ * @param array The string array.
+ * @return The number of bytes required to store the array.
+ */
+size_t measure_array(char *array[])
+
+/**
+ * Store a string array.
+ *
+ * @param storage The buffer where the array is to be stored.
+ * @param array The array to store.
+ * @return Where in the buffer the array ends.
+ */
+char *store_array(char *restrict storage, char *array[]);
+