old-cotton soggy/cotton / src / cotton.c
 1#include "cotton.h"
 2#include <stdio.h>
 3#include <stdlib.h>
 4#include <string.h>
 5#include <time.h>
 6
 7void cotton_init
 8(Cotton *c)
 9{
10    memset(c, 0, sizeof(Cotton));
11
12    srand((unsigned int)time(NULL));
13
14	c->stack_p = 0;
15
16    c->c_cottolette = COTTOLETTE[1];
17}