Blame view

check_memfree_freebsd/check_memfree.h 398 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#ifndef CHECK_MEMFREE_H
#define CHECK_MEMFREE_H

#include <iostream>
#include <sstream>
#include <fstream>
#include <limits>

#include <ctype.h>
#include <cstdlib>
#include <unistd.h>
#include <cstring>
#include <cstdio> 

#include <sys/time.h>

#include "range.h"
Imanol-Mikel Barba Sabariego authored
18
#include "auxiliar.h"
19
20
21
22
23
24
25
26

#define VERSION "1.0"

int getNum(string cmd);
void printVersion();
void printHelp(bool longVersion);

#endif