Hitmap 1.3
 All Data Structures Namespaces Files Functions Variables Typedefs Friends Macros Groups Pages
Macros | Functions
my_util.h File Reference
#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>
Include dependency graph for my_util.h:
This graph shows which files directly or indirectly include this file:

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)
 

Macro Definition Documentation

#define MAX (   a,
 
)    (((a)>(b))? (a) : (b))

Definition at line 11 of file my_util.h.

#define MIN (   a,
 
)    (((a)<(b))? (a) : (b))

Definition at line 10 of file my_util.h.

Function Documentation

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.

Here is the caller graph for this function:

double random_double ( double  low,
double  high 
)

Definition at line 38 of file matrix_io.c.

Here is the call graph for this function:

Here is the caller graph for this function:

int random_integer ( int  low,
int  high 
)

Definition at line 28 of file matrix_io.c.

Here is the call graph for this function:

int str_to_mem_unit ( char *  str)

Definition at line 57 of file matrix_io.c.