/*
* funcs.c
*/
#include <stdio.h>
#include <stdlib.h>
#include "funcs.h"
int random1000(int foo)
{
int value;
value = rand() % 1000;
return value;
}