1234567891011121314151617181920212223242526272829303132 |
- /* FILE
- *
- * file: word.cpp
- *
- *
- */
- /* HEADER THIS FILE */
- # include "word__copy.h"
- /* INCLUDE
- *
- * word__copy (struct Word *this, struct Word *word)
- *
- *
- */
- /* Word (Word *word) */
- void
- word__copy (struct Word *this, struct Word *word)
- {
- /* */
- this->value = word->value;
-
- /* */
- this->previous = word->previous;
-
- /* */
- this->next = word->next;
- }
|