Files
asterisk/include/asterisk/say.h
Mark Spencer 0c3b134da5 Version 0.1.3 from FTP
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@201 65c4cc65-6c06-0410-ace0-fbb531ad65f3
2000-01-09 19:58:18 +00:00

33 lines
746 B
C
Executable File

/*
* Asterisk -- A telephony toolkit for Linux.
*
* Say numbers and dates (maybe words one day too)
*
* Copyright (C) 1999, Mark Spencer
*
* Mark Spencer <markster@linux-support.net>
*
* This program is free software, distributed under the terms of
* the GNU General Public License
*/
#ifndef _ASTERISK_SAY_H
#define _ASTERISK_SAY_H
#include <asterisk/channel.h>
#include <asterisk/file.h>
#if defined(__cplusplus) || defined(c_plusplus)
extern "C" {
#endif
int ast_say_number(struct ast_channel *chan, int num, char *lang);
int ast_say_digits(struct ast_channel *chan, int num, char *lang);
int ast_say_digit_str(struct ast_channel *chan, char *num, char *lang);
#if defined(__cplusplus) || defined(c_plusplus)
}
#endif
#endif