4600-project-1/inc/transformer.hpp

10 lines
226 B
C++
Raw Normal View History

2022-04-04 13:39:30 -05:00
2022-04-04 20:12:40 -05:00
/*
transformer:
Unlinks block x from list1
Unlinks block y from freelist
Uses block x to generate block y's data
Links block x to freelist
Links block y to list2
*/
void *transformer (void *);