about summary refs log tree commit diff stats
path: root/087file.cc
blob: 2448370e859490869f3e8d537ca3b168db54bd6b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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;
}