4600-project-1/inc/transformer.hpp

16 lines
496 B
C++
Raw Normal View History

2022-04-06 06:45:57 +00:00
/*
+-------------+---------+-----------------------+
| John Breaux | jab0910 | JohnBreaux@my.unt.edu |
+-------------+---------+-----------------------+
| 2022-04-04 |
+-----------------------------------------------+
*/
2022-04-05 01:12:40 +00: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 *);