aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk/say.h
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>1999-10-30 01:01:34 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>1999-10-30 01:01:34 +0000
commit57f2b9b65e7b21fc9da6313f564f95ff45224b17 (patch)
tree50b1581ecb049e0a1472c30d7f2f6e8fd850c512 /include/asterisk/say.h
parentec80a4ce69479e01650a809f0df0f1548aab9001 (diff)
Version 0.1.0 from FTP
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@15 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk/say.h')
-rwxr-xr-xinclude/asterisk/say.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/include/asterisk/say.h b/include/asterisk/say.h
new file mode 100755
index 000000000..357d44f9f
--- /dev/null
+++ b/include/asterisk/say.h
@@ -0,0 +1,32 @@
+/*
+ * Asterisk -- A telephony toolkit for Linux.
+ *
+ * Say numbers and dates (maybe words one day too)
+ *
+ * Copyright (C) 1999, Adtran Inc. and Linux Support Services, LLC
+ *
+ * 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);
+int ast_say_digits(struct ast_channel *chan, int num);
+int ast_say_digit_str(struct ast_channel *chan, char *num);
+
+#if defined(__cplusplus) || defined(c_plusplus)
+}
+#endif
+
+#endif