]> git.pond.sub.org Git - empserver/blobdiff - src/lib/subs/getele.c
COPYING duplicates information from README. Remove. Move GPL from
[empserver] / src / lib / subs / getele.c
index 1fe4825a7415c976695b231db96e2d7524477c18..109c57f08d670c72808b463512adaf5593453963 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-2006, 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.
  *
  *  ---
  *
@@ -31,6 +31,8 @@
  *    
  */
 
+#include <config.h>
+
 #include <ctype.h>
 #include "misc.h"
 #include "player.h"
 static int tilde_escape(char *s);
 
 /*
- * Read a telegram for RECIPIENT into BUF.
+ * Read a telegram for RECIPIENT into BUF, in UTF-8.
  * BUF must have space for MAXTELSIZE+1 characters.
  * Return telegram length, or -1 on error.
- * Note: telegrams are message text (see doc/unicode).
  */
 int
 getele(char *recipient, char *buf)
 {
     char *bp;
     size_t len;
-    char buffer[MAXTELSIZE + 2]; /* message text */
+    char buffer[MAXTELSIZE + 2]; /* UTF-8 */
     char left[16];
 
     pr("Enter telegram for %s\n", recipient);