summaryrefslogtreecommitdiffstats
path: root/project.h
blob: 3517afb44f29a294029e5050380a19e56c03f5ec (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
#define MINGW

#include <stdio.h>
#include <stdint.h>
#include <inttypes.h>
#include <stdlib.h>
#include <time.h>
#include <sys/time.h>
#include <string.h>
#include <strings.h>
#include <unistd.h>
#include <math.h>

#ifdef __WINNT__
#define bzero(a,b) memset(a,0,b)
#endif


#define KHZ(a) ((a)*1000)
#define SAMPLE_RATE KHZ(48)
#define CARRIER KHZ(20)

#include "time_fn.h"

#include "prototypes.h"