initial import, after some monkeying around
[progcomp10.git] / link / C / Link / c-link-lib / c-link.c
1 /*
2  *  c-link.c
3  *  c-link-lib
4  *
5  *  Created by Daniel Axtens on 19/04/10.
6  *  Licensed under an MIT-style license: see the LICENSE file for details.
7  *
8  */
9
10 #include "c-link.h"
11 #include <stdlib.h>
12
13 ITEMTYPE RandomAttack() {
14         return (ITEMTYPE)rand()%3;
15 }
16
17
18 int main( int argc, char * argv[] ) {
19         srand( time( NULL ) );
20         return 0;
21 }

UCC git Repository :: git.ucc.asn.au