Hitmap 1.3
|
#include <stdio.h>
#include <unistd.h>
#include <malloc.h>
#include <stdlib.h>
#include <time.h>
#include <sys/time.h>
#include <sys/types.h>
#include <errno.h>
Go to the source code of this file.
Macros | |
#define | MIN(a, b) (((a)<(b))? (a) : (b)) |
#define | MAX(a, b) (((a)>(b))? (a) : (b)) |
Functions | |
void * | my_malloc (int sz) |
int | random_integer (int low, int high) |
double | random_double (double low, double high) |
int | str_to_mem_unit (char *str) |
void* my_malloc | ( | int | sz | ) |
Routines to read/write matrix.
ejim Wed Mar 4 15:16:14 PST 1998
Definition at line 12 of file matrix_io.c.
double random_double | ( | double | low, |
double | high | ||
) |
Definition at line 38 of file matrix_io.c.
int random_integer | ( | int | low, |
int | high | ||
) |
int str_to_mem_unit | ( | char * | str | ) |
Definition at line 57 of file matrix_io.c.