summaryrefslogtreecommitdiff
path: root/common.h
blob: a200d2ae99954c894bd7195420275b472c5511bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
/*
 * common.h: EPG2VDR plugin for the Video Disk Recorder
 *
 * See the README file for copyright information and how to reach the author.
 *
 */

#ifndef __COMMON_H
#define __COMMON_H

//***************************************************************************
//
//***************************************************************************

enum Misc
{
   success = 0,
   done    = success,
   fail    = -1,
   ignore  = -2,
   na      = -1,
   yes     = 1,
   on      = 1,
   off     = 0,
   no      = 0,
   TB      = 1,

   tmeSecondsPerMinute = 60,
   tmeSecondsPerHour = tmeSecondsPerMinute * 60,
   tmeSecondsPerDay = 24 * tmeSecondsPerHour,
   tmeUsecondsPerSecond = 1000 * 1000
};

//***************************************************************************
// Misc ..
//***************************************************************************

int isEmpty(const char* str);
int minMax(int x, int min, int max);
int getrand(int min, int max);
double min(double a, double b);
double max(double a, double b);
int isAlive(const char* address);
int ping(const char* address);

//***************************************************************************
// Time
//***************************************************************************

typedef unsigned long long MsTime;

MsTime msNow();

//***************************************************************************
// Tell
//***************************************************************************

void __attribute__ ((format(printf, 2, 3))) tell(int eloquence, const char* format, ...);
int error(const char* format, ...);

//***************************************************************************
#endif //___COMMON_H