;;;; mother modular generic compiler project
; (c)2001,2002/GPL Oskar Schirmer <oskar@scara.com>
; see file COPYING for GPL license details

; finite automaton scanner substitution list for ansi c (principle language)
; according to Harbison and Steele, "C A Reference Manual", ISBN 0-13-110933-2

(substitution-list
  '(
    ((word "auto") (auto ""))
    ((word "break") (break ""))
    ((word "case") (case ""))
    ((word "char") (char ""))
    ((word "const") (const ""))
    ((word "continue") (continue ""))
    ((word "default") (default ""))
    ((word "do") (do ""))
    ((word "double") (double ""))
    ((word "else") (else ""))
    ((word "enum") (enum ""))
    ((word "extern") (extern ""))
    ((word "float") (float ""))
    ((word "for") (for ""))
    ((word "goto") (goto ""))
    ((word "if") (if ""))
    ((word "int") (int ""))
    ((word "long") (long ""))
    ((word "register") (register ""))
    ((word "return") (return ""))
    ((word "short") (short ""))
    ((word "signed") (signed ""))
    ((word "sizeof") (sizeof ""))
    ((word "static") (static ""))
    ((word "struct") (struct ""))
    ((word "switch") (switch ""))
    ((word "typedef") (typedef ""))
    ((word "union") (union ""))
    ((word "unsigned") (unsigned ""))
    ((word "void") (void ""))
    ((word "volatile") (volatile ""))
    ((word "while") (while ""))
  )
)
