consistent naming
This commit is contained in:
parent
723e024d25
commit
b5f619dadd
5 changed files with 5 additions and 5 deletions
|
@ -1,6 +1,6 @@
|
||||||
#include "header.h"
|
#include "header.h"
|
||||||
|
|
||||||
do_close()
|
close_back()
|
||||||
{
|
{
|
||||||
sys_close( codefile);
|
sys_close( codefile);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#include "header.h"
|
#include "header.h"
|
||||||
|
|
||||||
do_open( filename)
|
open_back( filename)
|
||||||
char *filename;
|
char *filename;
|
||||||
{
|
{
|
||||||
if ( filename == (char *) '\0')
|
if ( filename == (char *) '\0')
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
|
|
||||||
close_back()
|
close_back()
|
||||||
{
|
{
|
||||||
output();
|
output_back();
|
||||||
|
|
||||||
wr_close();
|
wr_close();
|
||||||
}
|
}
|
||||||
|
|
|
@ -9,6 +9,6 @@ C_close()
|
||||||
assert( busy);
|
assert( busy);
|
||||||
|
|
||||||
end_back();
|
end_back();
|
||||||
do_close();
|
close_back();
|
||||||
busy = 0;
|
busy = 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -10,7 +10,7 @@ char *filename;
|
||||||
{
|
{
|
||||||
assert( !busy);
|
assert( !busy);
|
||||||
|
|
||||||
if ( !do_open( filename)) {
|
if ( !open_back( filename)) {
|
||||||
fprint( STDERR, "Couldn't open %s\n", filename);
|
fprint( STDERR, "Couldn't open %s\n", filename);
|
||||||
return( 0);
|
return( 0);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue