]> git.cameronkatri.com Git - bsdgames-darwin.git/blobdiff - morse/morse.c
Fix circle dep
[bsdgames-darwin.git] / morse / morse.c
index 70cbe4d15b648e1104574372ff605b955e82a55c..823d35d7323a24b81b12ad6c1921340885d59d92 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: morse.c,v 1.16 2009/08/12 08:11:37 dholland Exp $      */
+/*     $NetBSD: morse.c,v 1.18 2018/01/16 06:20:24 maya Exp $  */
 
 /*
  * Copyright (c) 1988, 1993
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1988, 1993\
 #if 0
 static char sccsid[] = "@(#)morse.c    8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: morse.c,v 1.16 2009/08/12 08:11:37 dholland Exp $");
+__RCSID("$NetBSD: morse.c,v 1.18 2018/01/16 06:20:24 maya Exp $");
 #endif
 #endif /* not lint */
 
@@ -107,6 +107,7 @@ static const struct punc {
        { '"', ".-..-." },
        { '=', "-...-" },
        { '+', ".-.-." },
+       { '_', "..--.-" },
        { '\0', NULL }
 };
 
@@ -119,9 +120,7 @@ static int sflag;
 static int dflag;
 
 int
-main(argc, argv)
-       int argc;
-       char **argv;
+main(int argc, char **argv)
 {
        int ch;
        char *p;
@@ -201,8 +200,7 @@ main(argc, argv)
 }
 
 void
-decode(s)
-       const char *s;
+decode(const char *s)
 {
        int i;
        
@@ -231,8 +229,7 @@ decode(s)
 }
 
 void
-morse(c)
-       int c;
+morse(int c)
 {
        int i;
 
@@ -255,8 +252,7 @@ morse(c)
 }
 
 void
-show(s)
-       const char *s;
+show(const char *s)
 {
        if (sflag)
                printf(" %s", s);