-
Notifications
You must be signed in to change notification settings - Fork 0
/
basic.h
87 lines (68 loc) · 1.69 KB
/
basic.h
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
* File: basic.h
* - basic definitions and declarations
*
* Author: Hermann Stamm-Wilbrandt
* Institut fuer Informatik III
* Roemerstr. 164
* Bonn University
* D-53117 Bonn
* Germany
* email: [email protected]
* phone: 0228-550-260 internal: x260 or x28, Fax: 0228-550-382
*
* For my safety:
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
#ifndef def_basic_h
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>
#include <time.h>
#ifndef CLK_TCK
#define CLK_TCK 1000000
#endif
#ifdef __GNUC__
#ifndef __linux__
int fread(char *ptr, int size, int nitems, FILE *stream);
int fwrite(char *ptr, int size, int nitems, FILE *stream);
int fseek(FILE *stream, long offset, int ptrname);
int fprintf(FILE *stream, char *format,...);
int sscanf(char *s, char *format,...);
int fclose(FILE *stream);
int fflush(FILE *stream);
int printf(char *format,...);
int fgetc(FILE *);
int ungetc(char, FILE *);
int fscanf(FILE *,char *,...);
int rewind(FILE *);
long random();
void srandom(int);
long clock();
int system(char *);
#endif
#endif
#define CAT(A,B) A##B
#define _(A,B) CAT(A,B)
#define USING(X) X=X;
void *MALLOC(size_t n);
void FREE(void *p);
void statistics();
void err_handler(int no,char *mesg);
typedef unsigned int num;
num MIN(num x, num y);
num MAX(num x, num y);
void SWAP(num *a, num *b);
typedef num bool;
#define undef 0
#define before 0
#define after 1
#define false 0
#define true 1
#define newline (void) printf("\n")
#define def_basic_h
#endif