aboutsummaryrefslogtreecommitdiffstats
path: root/writers.c
diff options
context:
space:
mode:
authorkraxel <kraxel>2004-03-28 11:31:57 +0000
committerkraxel <kraxel>2004-03-28 11:31:57 +0000
commite9e9684117719204929821028ba9dbb7915ea119 (patch)
tree6dd2d71940b33a9f960945335e9124ef4fea9fe7 /writers.c
downloadfbida-e9e9684117719204929821028ba9dbb7915ea119.tar.gz
Initial revision
Diffstat (limited to 'writers.c')
-rw-r--r--writers.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/writers.c b/writers.c
new file mode 100644
index 0000000..18a1991
--- /dev/null
+++ b/writers.c
@@ -0,0 +1,15 @@
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+#include "readers.h"
+#include "writers.h"
+
+/* ----------------------------------------------------------------------- */
+
+LIST_HEAD(writers);
+
+void write_register(struct ida_writer *writer)
+{
+ list_add_tail(&writer->list, &writers);
+}