summaryrefslogtreecommitdiff
path: root/src/input.h
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2002-11-18 12:52:33 +0000
committerBruno Haible <bruno@clisp.org>2002-11-18 12:52:33 +0000
commit4cda19576bacc02b1ee7f6306ed5c935ac9ad828 (patch)
tree2a69fb8b86d7717329b6fad0c983e8e842c9d70f /src/input.h
parentef7645289da8eea8a1e54383761fb5dc0cf043c8 (diff)
downloadgperf-4cda19576bacc02b1ee7f6306ed5c935ac9ad828.tar.gz
Align all member declarations.
Diffstat (limited to 'src/input.h')
-rw-r--r--src/input.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/input.h b/src/input.h
index d602891..d7e8247 100644
--- a/src/input.h
+++ b/src/input.h
@@ -31,22 +31,22 @@ Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111, USA. */
class Input : private Read_Line
{
public:
- void read_keys ();
+ void read_keys ();
private:
#ifndef strcspn
- static int strcspn (const char *s, const char *reject);
+ static int strcspn (const char *s, const char *reject);
#endif
- void set_output_types ();
- const char *get_array_type ();
- const char *save_include_src ();
- const char *get_special_input (char delimiter);
+ void set_output_types ();
+ const char * get_array_type ();
+ const char * save_include_src ();
+ const char * get_special_input (char delimiter);
public:
- const char *_array_type; /* Pointer to the type for word list. */
- const char *_return_type; /* Pointer to return type for lookup function. */
- const char *_struct_tag; /* Shorthand for user-defined struct tag type. */
- const char *_include_src; /* C source code to be included verbatim. */
- int _additional_code; /* True if any additional C code is included. */
- KeywordExt_List *_head; /* Points to the head of the linked list. */
+ const char * _array_type; /* Pointer to the type for word list. */
+ const char * _return_type; /* Pointer to return type for lookup function. */
+ const char * _struct_tag; /* Shorthand for user-defined struct tag type. */
+ const char * _include_src; /* C source code to be included verbatim. */
+ int _additional_code; /* True if any additional C code is included. */
+ KeywordExt_List * _head; /* Points to the head of the linked list. */
};
#endif