123456789101112131415161718192021222324 |
- /* FILE
- *
- * file: word__init.c
- *
- *
- */
- # include <stddef.h>
- # include "word__init.h"
- /* tools wich point */
- /* INITIALIZATION Word */
- void
- word__init (struct Word *this)
- {
- /* */
- this->previous = NULL;
-
- /* */
- this->next = NULL;
- }
|