word__init.c 254 B

123456789101112131415161718192021222324
  1. /* FILE
  2. *
  3. * file: word__init.c
  4. *
  5. *
  6. */
  7. # include <stddef.h>
  8. # include "word__init.h"
  9. /* tools wich point */
  10. /* INITIALIZATION Word */
  11. void
  12. word__init (struct Word *this)
  13. {
  14. /* */
  15. this->previous = NULL;
  16. /* */
  17. this->next = NULL;
  18. }