[asterisk-commits] russell: branch group/addons-merge-1.6.2 r204387 - /team/group/addons-merge-1...
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Jun 30 08:20:00 CDT 2009
Author: russell
Date: Tue Jun 30 08:19:57 2009
New Revision: 204387
URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=204387
Log:
some cleanup.
Modified:
team/group/addons-merge-1.6.2/addons/app_saycountpl.c
Modified: team/group/addons-merge-1.6.2/addons/app_saycountpl.c
URL: http://svn.asterisk.org/svn-view/asterisk/team/group/addons-merge-1.6.2/addons/app_saycountpl.c?view=diff&rev=204387&r1=204386&r2=204387
==============================================================================
--- team/group/addons-merge-1.6.2/addons/app_saycountpl.c (original)
+++ team/group/addons-merge-1.6.2/addons/app_saycountpl.c Tue Jun 30 08:19:57 2009
@@ -1,20 +1,36 @@
/*
- * Asterisk -- A telephony toolkit for Linux.
+ * Asterisk -- An open source telephony toolkit.
*
- * saycountpl application
- *
* Copyright (C) 2004, Andy Powell & TAAN Softworks Corp.
*
+ * See http://www.asterisk.org for more information about
+ * the Asterisk project. Please do not directly contact
+ * any of the maintainers of this project for assistance;
+ * the project provides a web site, mailing lists and IRC
+ * channels for your use.
+ *
+ * This program is free software, distributed under the terms of
+ * the GNU General Public License Version 2. See the LICENSE file
+ * at the top of the source tree.
*/
-#include <asterisk.h>
-#include <asterisk/file.h>
-#include <asterisk/logger.h>
-#include <asterisk/channel.h>
-#include <asterisk/pbx.h>
-#include <asterisk/module.h>
-#include <asterisk/lock.h>
-#include <asterisk/app.h>
+/*!
+ * \file
+ * \brief Say Polish counting words
+ * \author Andy Powell
+ */
+
+#include "asterisk.h"
+
+ASTERISK_FILE_VERSION(__FILE__, "$Revision$")
+
+#include "asterisk/file.h"
+#include "asterisk/logger.h"
+#include "asterisk/channel.h"
+#include "asterisk/pbx.h"
+#include "asterisk/module.h"
+#include "asterisk/lock.h"
+#include "asterisk/app.h"
/*** DOCUMENTATION
<application name="SayCountPL" language="en_US">
@@ -36,7 +52,7 @@
</application>
***/
-static char *app = "SayCountPL";
+static const char *app = "SayCountPL";
static int saywords(struct ast_channel *chan, char *word1, char *word2, char *word5, int num)
{
More information about the asterisk-commits
mailing list