diff options
Diffstat (limited to '087file.cc')
-rw-r--r-- | 087file.cc | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/087file.cc b/087file.cc new file mode 100644 index 00000000..2448370e --- /dev/null +++ b/087file.cc @@ -0,0 +1,27 @@ +//:: Interacting with the file-system + +:(before "End Primitive Recipe Declarations") +OPEN_FILE_FOR_READING, +:(before "End Primitive Recipe Numbers") +put(Recipe_ordinal, "open-file-for-reading", OPEN_FILE_FOR_READING); +:(before "End Primitive Recipe Checks") +case OPEN_FILE_FOR_READING: { + break; +} +:(before "End Primitive Recipe Implementations") +case OPEN_FILE_FOR_READING: { + break; +} + +:(before "End Primitive Recipe Declarations") +OPEN_FILE_FOR_WRITING, +:(before "End Primitive Recipe Numbers") +put(Recipe_ordinal, "open-file-for-reading", OPEN_FILE_FOR_WRITING); +:(before "End Primitive Recipe Checks") +case OPEN_FILE_FOR_WRITING: { + break; +} +:(before "End Primitive Recipe Implementations") +case OPEN_FILE_FOR_WRITING: { + break; +} |