added built in: apply.
[bugg-scheme-compiler.git] / src / c / strings.h
blob14e3d51e6b27d7a173db8ad5762a9e23690db476
1 #ifndef __STRINGS_H
2 #define __STRINGS_H
4 /* Error messages for use with ASSERT_ALWAYS( predicate, error_message ) */
5 #define MSG_ERR_ARGCOUNT(proc,ex) ("incorrect number of arguments for " proc ". Expected " #ex "\n")
6 #define MSG_ERR_NOTPAIR "not a pair"
7 #define MSG_ERR_NOTLIST "not a proper list"
8 #define MSG_ERR_APPNONPROC "attempt to apply non-procedure"
10 #endif