Changeset 48b7085e for doc/theses/aaron_moss_PhD/phd/code
- Timestamp:
- Sep 25, 2018, 4:56:48 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, no_list, persistent-indexer, pthread-emulation, qualifiedEnum
- Children:
- a32346b
- Parents:
- 4075228
- Location:
- doc/theses/aaron_moss_PhD/phd/code
- Files:
-
- 1 added
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
doc/theses/aaron_moss_PhD/phd/code/bespoke-generic.c
r4075228 r48b7085e 34 34 struct string_list* sl = NULL; 35 35 string_list_insert( &sl, "hello" ); 36 printf("%s\n", string_list_head(sl) 36 printf("%s\n", string_list_head(sl)); 37 37 } -
doc/theses/aaron_moss_PhD/phd/code/macro-generic.c
r4075228 r48b7085e 33 33 struct list(string)* sl = NULL; 34 34 list_insert(string)( &sl, "hello" ); 35 printf("%s\n", list_head(string)(sl) 35 printf("%s\n", list_head(string)(sl)); 36 36 } -
doc/theses/aaron_moss_PhD/phd/code/void-generic.c
r4075228 r48b7085e 35 35 struct list* sl = NULL; 36 36 list_insert( &sl, "hello", string_copy ); 37 printf("%s\n", (char*)list_head(sl) 37 printf("%s\n", (char*)list_head(sl)); 38 38 }
Note: See TracChangeset
for help on using the changeset viewer.