-#ifdef VMS
- name_base = stringappend (name_base, short_base_length, "_tab");
-#else
-#ifdef MSDOS
- name_base = stringappend (name_base, short_base_length, "_tab");
-#else
- name_base = stringappend (name_base, short_base_length, ".tab");
-#endif /* not MSDOS */
-#endif
- base_length = short_base_length + 4;
+/* Gets the extension index in FILENAME. Returns 0 if fails to
+ find an extension. */
+static int
+get_extension_index (const char *filename)
+{
+ int len;
+
+ len = strlen (filename);
+
+ if (filename[len-- - 1] == '.')
+ return (0);
+
+ while ((len > 0) && (filename[len - 1] != '.'))
+ if (filename[len - 1] == '/')
+ return (0);
+ else
+ len--;
+
+ return (len - 1);
+}
+
+/* Computes extensions from the grammar file extension. */
+static void
+compute_exts_from_gf (const char *ext)
+{
+ /* Checks if SRC_EXTENSION is NULL. In the other case, %source_extension
+ was specified in the grammar file. */
+ if (src_extension == NULL)
+ {
+ src_extension = tr (ext, 'y', 'c');
+ src_extension = tr (src_extension, 'Y', 'C');
+ }
+ /* Checks if HEADER_EXTENSION is NULL. In the other case,
+ %header_extension was specified in the grammar file. */
+ if (header_extension == NULL)
+ {
+ header_extension = tr (ext, 'y', 'h');
+ header_extension = tr (header_extension, 'Y', 'H');