summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAkim Demaille <akim@lrde.epita.fr>2013-04-03 17:07:56 +0200
committerAkim Demaille <akim@lrde.epita.fr>2013-04-03 17:15:50 +0200
commit9fb61ca8d87d541a0d027225b0a5a8218ea28ee1 (patch)
tree530fb913f70bf733ec9063f23ecd5fc5598850e5 /src
parent3f6e5dd6ace7e16bfb1a307d8c3f8061546470a4 (diff)
downloadbison-9fb61ca8d87d541a0d027225b0a5a8218ea28ee1.tar.gz
style: comment changes
* src/muscle-tab.c: Move the documentation of public functions to... * src/muscle-tab.h: here. Fix comment consistency issues.
Diffstat (limited to 'src')
-rw-r--r--src/muscle-tab.c31
-rw-r--r--src/muscle-tab.h21
2 files changed, 18 insertions, 34 deletions
diff --git a/src/muscle-tab.c b/src/muscle-tab.c
index 8060a2c2..c4f302c2 100644
--- a/src/muscle-tab.c
+++ b/src/muscle-tab.c
@@ -60,11 +60,6 @@ hash_muscle (const void *x, size_t tablesize)
return hash_string (m->key, tablesize);
}
-/*-----------------------------------------------------------------.
-| Create the MUSCLE_TABLE, and initialize it with default values. |
-| Also set up the MUSCLE_OBSTACK. |
-`-----------------------------------------------------------------*/
-
static void
muscle_entry_free (void *entry)
{
@@ -87,10 +82,6 @@ muscle_init (void)
}
-/*------------------------------------------------------------.
-| Free all the memory consumed by the muscle machinery only. |
-`------------------------------------------------------------*/
-
void
muscle_free (void)
{
@@ -99,12 +90,6 @@ muscle_free (void)
}
-
-/*------------------------------------------------------------.
-| Insert (KEY, VALUE). If KEY already existed, overwrite the |
-| previous value. |
-`------------------------------------------------------------*/
-
void
muscle_insert (char const *key, char const *value)
{
@@ -212,11 +197,6 @@ void muscle_pair_list_grow (const char *muscle,
}
-/*----------------------------------------------------------------------------.
-| Find the value of muscle KEY. Unlike MUSCLE_FIND, this is always reliable |
-| to determine whether KEY has a value. |
-`----------------------------------------------------------------------------*/
-
char const *
muscle_find_const (char const *key)
{
@@ -231,12 +211,6 @@ muscle_find_const (char const *key)
}
-/*----------------------------------------------------------------------------.
-| Find the value of muscle KEY. Abort if muscle_insert was invoked more |
-| recently than muscle_grow for KEY since muscle_find can't return a |
-| char const *. |
-`----------------------------------------------------------------------------*/
-
char *
muscle_find (char const *key)
{
@@ -711,11 +685,6 @@ muscle_m4_output_processor (void *entry, void *out)
}
-/*----------------------------------------------------------------.
-| Output the definition of all the current muscles into a list of |
-| m4_defines. |
-`----------------------------------------------------------------*/
-
void
muscles_m4_output (FILE *out)
{
diff --git a/src/muscle-tab.h b/src/muscle-tab.h
index 59c87510..30a74523 100644
--- a/src/muscle-tab.h
+++ b/src/muscle-tab.h
@@ -24,10 +24,24 @@
# include "location.h"
+/* Create the MUSCLE_TABLE, and initialize it with default values.
+ Also set up the MUSCLE_OBSTACK. */
void muscle_init (void);
+
+/* Insert (KEY, VALUE). If KEY already existed, overwrite the
+ previous value. */
void muscle_insert (char const *key, char const *value);
+
+/* Find the value of muscle KEY. Unlike MUSCLE_FIND, this is always
+ reliable to determine whether KEY has a value. */
char const *muscle_find_const (char const *key);
+
+/* Find the value of muscle KEY. Abort if muscle_insert was invoked
+ more recently than muscle_grow for KEY since muscle_find can't
+ return a char const *. */
char *muscle_find (char const *key);
+
+/* Free all the memory consumed by the muscle machinery only. */
void muscle_free (void);
@@ -71,13 +85,11 @@ extern struct obstack muscle_obstack;
/* Append VALUE to the current value of KEY. If KEY did not already
exist, create it. Use MUSCLE_OBSTACK. De-allocate the previously
associated value. Copy VALUE and SEPARATOR. */
-
void muscle_grow (const char *key, const char *value, const char *separator);
/* Append VALUE to the current value of KEY, using muscle_grow. But
in addition, issue a synchronization line for the location LOC. */
-
void muscle_code_grow (const char *key, const char *value, location loc);
@@ -97,7 +109,8 @@ void muscle_user_name_list_grow (char const *key, char const *user_name,
/* Indicates whether a variable's value was specified with -D/--define, with
-F/--force-define, or in the grammar file. */
typedef enum {
- MUSCLE_PERCENT_DEFINE_D = 0, MUSCLE_PERCENT_DEFINE_F,
+ MUSCLE_PERCENT_DEFINE_D = 0,
+ MUSCLE_PERCENT_DEFINE_F,
MUSCLE_PERCENT_DEFINE_GRAMMAR_FILE
} muscle_percent_define_how;
@@ -184,6 +197,8 @@ void muscle_percent_define_check_values (char const * const *values);
void muscle_percent_code_grow (char const *qualifier, location qualifier_loc,
char const *code, location code_loc);
+/* Output the definition of all the current muscles into a list of
+ m4_defines. */
void muscles_m4_output (FILE *out);
#endif /* not MUSCLE_TAB_H_ */