2
0
Эх сурвалжийг харах

Provide function to realise the input/output function and debugger
facilities.

Waldemar Celes 32 жил өмнө
parent
commit
75ed504382
1 өөрчлөгдсөн 11 нэмэгдсэн , 4 устгасан
  1. 11 4
      inout.c

+ 11 - 4
inout.c

@@ -2,12 +2,10 @@
 ** inout.c
 ** inout.c
 ** Provide function to realise the input/output function and debugger 
 ** Provide function to realise the input/output function and debugger 
 ** facilities.
 ** facilities.
-**
-** Waldemar Celes Filho
-** TeCGraf - PUC-Rio
-** 11 May 93
 */
 */
 
 
+char *rcs_inout="$Id: $";
+
 #include <stdio.h>
 #include <stdio.h>
 #include <string.h>
 #include <string.h>
 
 
@@ -96,6 +94,7 @@ void lua_closefile (void)
 {
 {
  if (fp != NULL)
  if (fp != NULL)
  {
  {
+  lua_delfile();
   fclose (fp);
   fclose (fp);
   fp = NULL;
   fp = NULL;
  }
  }
@@ -118,6 +117,14 @@ int lua_openstring (char *s)
  return 0;
  return 0;
 }
 }
 
 
+/*
+** Function to close an opened string
+*/
+void lua_closestring (void)
+{
+ lua_delfile();
+}
+
 /*
 /*
 ** Call user function to handle error messages, if registred. Or report error
 ** Call user function to handle error messages, if registred. Or report error
 ** using standard function (fprintf).
 ** using standard function (fprintf).