SCM Repository
[smlnj] Annotation of /sml/releases/release-110.36/ckit/src/parser/parser-sig.sml
Annotation of /sml/releases/release-110.36/ckit/src/parser/parser-sig.sml
Parent Directory
|
Revision Log
Revision 930 -
(view)
(download)
1 : |
dbm |
597 |
(* Copyright (c) 1998 by Lucent Technologies *)
|
2 : |
|
|
|
3 : |
|
|
signature PARSER =
|
4 : |
|
|
sig
|
5 : |
|
|
|
6 : |
|
|
val parseFile : Error.errorState -> string -> ParseTree.externalDecl list
|
7 : |
|
|
(* parseFile takes an errorState and the name of a (preprocessed)
|
8 : |
|
|
* C source file and returns a list of external declaration parse
|
9 : |
|
|
* trees corresponding to the top-level declarations in the source file.
|
10 : |
|
|
* See ckit/src/parser/util/error-sig.sml for documentation on
|
11 : |
|
|
* Error.errorState.
|
12 : |
|
|
*)
|
13 : |
|
|
|
14 : |
|
|
end
|
15 : |
|
|
|