parser: Remove the unused attribute alignment from struct declaration_specifiers_t.
[cparser] / input.h
diff --git a/input.h b/input.h
index 137d42e..0a9bb6f 100644 (file)
--- a/input.h
+++ b/input.h
@@ -1,3 +1,7 @@
+/*
+ * This file is part of cparser.
+ * Copyright (C) 2012 Matthias Braun <matze@braunis.de>
+ */
 #ifndef INPUT_H
 #define INPUT_H
 
@@ -7,6 +11,7 @@
 typedef struct input_t input_t;
 
 input_t *input_from_stream(FILE *stream, const char *encoding);
+input_t *input_from_string(const char *string, const char *encoding);
 
 /** Type for a function being called on an input (or encoding) errors. */
 typedef void (*input_error_callback_func)(unsigned delta_lines,