Version 0.1.7 from FTP
[asterisk/asterisk.git] / include / asterisk / ulaw.h
1 /*
2  * Asterisk -- A telephony toolkit for Linux.
3  *
4  * u-Law to Signed linear conversion
5  * 
6  * Copyright (C) 1999, Mark Spencer
7  *
8  * Mark Spencer <markster@linux-support.net>
9  *
10  * This program is free software, distributed under the terms of
11  * the GNU General Public License
12  */
13
14 #ifndef _ASTERISK_ULAW_H
15 #define _ASTERISK_ULAW_H
16
17 extern void ast_ulaw_init(void);
18 extern unsigned char ast_lin2mu[65536];
19 extern short ast_mulaw[256];
20
21
22
23 #endif