clock/clock.c
changeset 37 a05815df848c
parent 9 3a4ddded06f2
--- a/clock/clock.c	Sun Apr 11 14:59:53 2010 +0200
+++ b/clock/clock.c	Sun Apr 11 15:27:59 2010 +0200
@@ -1,28 +1,28 @@
 /*
-   Copyright 2010 Mikael Berthe
-
-  Module "clock"      -- Displays date and time
-
-Options:
-- clock_precision_onesec: boolean (default: 0)
-  If true, the clock will be updated every second,
-  if false, the clock is updated once per minute.
-- clock_strfmt: string (default: "%Y-%m-%d %H:%M")
-  strftime format string.
-
-This module is free software: you can redistribute it and/or modify
-it under the terms of the GNU General Public License as published by
-the Free Software Foundation, either version 2 of the License, or
-(at your option) any later version.
-
-This program is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-GNU General Public License for more details.
-
-You should have received a copy of the GNU General Public License
-along with this program.  If not, see <http://www.gnu.org/licenses/>.
-*/
+ *  Module "clock"      -- Displays date and time
+ *
+ *  Options:
+ *  - clock_precision_onesec: boolean (default: 0)
+ *    If true, the clock will be updated every second,
+ *    if false, the clock is updated once per minute.
+ *  - clock_strfmt: string (default: "%Y-%m-%d %H:%M")
+ *    strftime format string.
+ *
+ * Copyright (C) 2010 Mikael Berthe <mikael@lilotux.net>
+ *
+ * This module is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ */
 
 #include <time.h>