summaryrefslogtreecommitdiffstats
path: root/src/dtmffifo.h
blob: 39e39c97a2d47d9cae7a92a450ab029f7680d234 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#ifndef foodtmffifohfoo
#define foodtmffifohfoo

struct dtmf_fifo {
    int fd;
    char *dir, *fname;
};

struct dtmf_fifo* dtmf_fifo_new(void);
void dtmf_fifo_free(struct dtmf_fifo *d);
void dtmf_fifo_pass(struct dtmf_fifo *d, char c);

#endif