[go: up one dir, main page]

Menu

[r5]: / src / auxiliar.h  Maximize  Restore  History

Download this file

24 lines (17 with data), 752 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/***************************************************************************
auxiliar.h - description
-------------------
begin : Tue Aug 26 2003
copyright : (C) 2003 by Instituto Tecnologico de Informatica (ITI)
email : tt2iti@iti.upv.es
***************************************************************************/
#ifndef AUXILIAR_INCLUDED
#define AUXILIAR_INCLUDED
/* Log function employed as LOG */
#define LOG(X) log(X)
typedef struct timeval timeval_t;
/* Check if memory was allocated to pointer ptr */
void memtest(void *ptr);
int levenshtein_distance(char *s,char*t);
double elapsed_time(timeval_t *t1, timeval_t *t2);
#endif