aboutsummaryrefslogtreecommitdiffstats
path: root/src/client.c
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.c
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 'src/client.c')
-rw-r--r--src/client.c37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/client.c b/src/client.c
index fb08c49..9df327e 100644
--- a/src/client.c
+++ b/src/client.c
@@ -20,6 +20,7 @@
* DEALINGS IN THE SOFTWARE.
*/
#include "client.h"
+#include <string.h>
@@ -47,3 +48,39 @@ send_command(enum command cmd, size_t n, const char *restrict msg)
return 0 /* TODO */
}
+
+
+/**
+ * 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[])
+{
+ size_t rc = 1;
+ for (; *array; array++)
+ rc += strlen(*array) + 1;
+ return rc * sizeof(char);
+}
+
+
+/**
+ * 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[])
+{
+ for (; *array; array++) {
+ storage = stpcpy(storage, *array);
+ *storage++ = 0;
+ }
+ *storage++ = 0;
+ return storage;
+}
+