Hitmap 1.3
 All Data Structures Namespaces Files Functions Variables Typedefs Friends Macros Groups Pages
my_util.h
Go to the documentation of this file.
1 #include <stdio.h>
2 #include <unistd.h>
3 #include <malloc.h>
4 #include <stdlib.h>
5 #include <time.h>
6 #include <sys/time.h>
7 #include <sys/types.h>
8 #include <errno.h>
9 
10 #define MIN(a,b) (((a)<(b))? (a) : (b))
11 #define MAX(a,b) (((a)>(b))? (a) : (b))
12 
13 void *my_malloc (int sz);
14 int random_integer (int low, int high);
15 double random_double (double low, double high);
16 int str_to_mem_unit(char *str);
int random_integer(int low, int high)
Definition: matrix_io.c:28
double random_double(double low, double high)
Definition: matrix_io.c:38
int str_to_mem_unit(char *str)
Definition: matrix_io.c:57
void * my_malloc(int sz)
Definition: matrix_io.c:12