]> git.pond.sub.org Git - empserver/blobdiff - src/lib/gen/copy.c
Update copyright notice.
[empserver] / src / lib / gen / copy.c
index ebed929668500d981fb8b95d4679153a16c03d04..863d8ad68597e6373e1e7b35353679a1acc35e1e 100644 (file)
@@ -1,6 +1,6 @@
 /*
  *  Empire - A multi-player, client/server Internet based war game.
- *  Copyright (C) 1986-2000, Dave Pare, Jeff Bailey, Thomas Ruschak,
+ *  Copyright (C) 1986-2007, Dave Pare, Jeff Bailey, Thomas Ruschak,
  *                           Ken Stevens, Steve McClure
  *
  *  This program is free software; you can redistribute it and/or modify
@@ -19,9 +19,9 @@
  *
  *  ---
  *
- *  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.
  *
  *  ---
  *
  *     
  */
 
-#include "misc.h"
-#include "xy.h"
+#include <config.h>
+
 #include "map.h"
-#include "gen.h"
+#include "misc.h"
 #include "optlist.h"
-
-s_char *
-copy(register s_char *s1, register s_char *s2)
-{
-       while ((*s2++ = *s1++) != 0)
-               ;
-       return s2 - 1;
-}
-
-#ifdef hpux
-#include <memory.h>
-
-void
-bzero(s_char *ptr, int len)
-{
-       memset(ptr, 0, len);
-}
-
-void
-bcopy(s_char *src, s_char *dst, int len)
-{
-       memcpy(dst, src, len);
-}
-#endif
+#include "xy.h"
 
 /*
  * space-fill a map or radar scan;
  * null terminate
  */
 void
-blankfill(s_char *ptr, register struct range *range, int size)
+blankfill(char *ptr, struct range *range, int size)
 {
-       register s_char *p;
-       register int row;
-       register int col;
+    char *p;
+    int row;
+    int col;
 
-       for (row=0; row<range->height; row++) {
-               col = (range->width + 1) * (size + 1) / 2 - 1;
-               p = ptr;
-               while (--col >= 0)
-                       *p++ = ' ';
-               *p++ = 0;
-               ptr += MAPWIDTH(size);
-       }
+    for (row = 0; row < range->height; row++) {
+       col = (range->width + 1) * (size + 1) / 2 - 1;
+       p = ptr;
+       while (--col >= 0)
+           *p++ = ' ';
+       *p++ = 0;
+       ptr += MAPWIDTH(size);
+    }
 }