]> ncurses.scripts.mit.edu Git - ncurses.git/blobdiff - ncurses/base/lib_echo.c
ncurses 5.6 - patch 20071222
[ncurses.git] / ncurses / base / lib_echo.c
index 4ccf97ff64c08a3cc070c24663c87dec6111d67f..df44713d1a11b88566f005760d8aece7a45fccb4 100644 (file)
@@ -1,5 +1,5 @@
 /****************************************************************************
- * Copyright (c) 1998 Free Software Foundation, Inc.                        *
+ * Copyright (c) 1998,2000 Free Software Foundation, Inc.                   *
  *                                                                          *
  * Permission is hereby granted, free of charge, to any person obtaining a  *
  * copy of this software and associated documentation files (the            *
@@ -31,7 +31,6 @@
  *     and: Eric S. Raymond <esr@snark.thyrsus.com>                         *
  ****************************************************************************/
 
-
 /*
  *     echo.c
  *
 
 #include <curses.priv.h>
 
-MODULE_ID("$Id: lib_echo.c,v 1.3 1998/10/12 13:15:33 Alexander.V.Lukyanov Exp $")
+MODULE_ID("$Id: lib_echo.c,v 1.5 2000/12/10 02:43:27 tom Exp $")
 
-int echo(void)
+NCURSES_EXPORT(int)
+echo(void)
 {
-       T((T_CALLED("echo()")));
-       SP->_echo = TRUE;
-       returnCode(OK);
+    T((T_CALLED("echo()")));
+    SP->_echo = TRUE;
+    returnCode(OK);
 }
 
-int noecho(void)
+NCURSES_EXPORT(int)
+noecho(void)
 {
-       T((T_CALLED("noecho()")));
-       SP->_echo = FALSE;
-       returnCode(OK);
+    T((T_CALLED("noecho()")));
+    SP->_echo = FALSE;
+    returnCode(OK);
 }