aboutsummaryrefslogtreecommitdiff
path: root/src/command.h
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2008-10-31 09:17:56 +0100
committerMax Kellermann <max@duempel.org>2008-10-31 09:17:56 +0100
commit90e9079142f533c9a30f3431e03b49bbf4f73a77 (patch)
tree517f7833796d96a67adf9e855cb43b254b04395d /src/command.h
parente5ef2d8a375865c8b5058c1107d2b32ce89b7c9d (diff)
client: use GSList instead of struct strnode for command lists
Replace a custom data structure with a GLib one.
Diffstat (limited to 'src/command.h')
-rw-r--r--src/command.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/command.h b/src/command.h
index 763487c1..bcefd037 100644
--- a/src/command.h
+++ b/src/command.h
@@ -20,9 +20,9 @@
#define COMMAND_H
#include "gcc.h"
-#include "sllist.h"
#include "ack.h"
+#include <glib.h>
#include <stdbool.h>
enum command_return {
@@ -40,7 +40,7 @@ void command_finish(void);
enum command_return
command_process_list(struct client *client,
- bool list_ok, struct strnode *list);
+ bool list_ok, GSList *list);
enum command_return
command_process(struct client *client, char *commandString);