]> git.pond.sub.org Git - empserver/blobdiff - src/lib/gen/numstr.c
Update copyright notice
[empserver] / src / lib / gen / numstr.c
index c892761d78d2461ce2645f93675a5df3a0be79a1..4ec59a2ea6b1ddb972f2a888cfd7132f4ec54ec4 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2005, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2010, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
  *
  *  ---
  *
- *  See the "LEGAL", "LICENSE", "CREDITS" and "README" files for all the
- *  related information and legal notices. It is expected that any future
- *  projects/authors will amend these files as needed.
+ *  See files README, COPYING and CREDITS in the root of the source
+ *  tree for related information and legal notices.  It is expected
+ *  that future projects/authors will amend these files as needed.
  *
  *  ---
  *
  *  numstr.c: Turn a number into a word
- * 
+ *
  *  Known contributors to this file:
  *     Steve McClure, 2000
  */
 
-#include <string.h>
-#include "misc.h"
-#include "gen.h"
+#include <config.h>
+
+#include "prototypes.h"
 
-s_char *
-numstr(s_char *buf, int n)
+char *
+numstr(char *buf, int n)
 {
-    static s_char *numnames[] = {
+    static char *numnames[] = {
        "zero", "one", "two", "three", "four", "five", "six",
        "seven", "eight", "nine", "ten", "eleven", "twelve",
        "thirteen", "fourteen", "fifteen", "sixteen",
        "seventeen", "eighteen", "nineteen",
     };
-    static s_char *tennames[] = {
+    static char *tennames[] = {
        "", "", "twenty", "thirty", "forty", "fifty",
-       "sixty", "seventy", "eighty", "ninety",
-       "hundred", "hundred ten", "hundred twenty",
-       "hundred thirty", 0,
+       "sixty", "seventy", "eighty", "ninety", "hundred"
     };
 
     if (n > 100) {
@@ -69,10 +67,10 @@ numstr(s_char *buf, int n)
     return buf;
 }
 
-s_char *
+char *
 effadv(int n)
 {
-    static s_char *effadv_list[] = {
+    static char *effadv_list[] = {
        "minimally", "partially", "moderately", "completely",
     };