12 lines
No EOL
196 B
C
12 lines
No EOL
196 B
C
#include <u.h>
|
|
#include <libc.h>
|
|
#include "aux.h"
|
|
|
|
Aux* create_aux(FileType t) {
|
|
Aux* self = (Aux*)malloc(sizeof(Aux));
|
|
self->type = t;
|
|
self->data = nil;
|
|
self->count = 0;
|
|
|
|
return self;
|
|
} |