File: filee.c

package info (click to toggle)
yforth 0.1beta-21
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 368 kB
  • ctags: 789
  • sloc: ansic: 4,424; makefile: 58
file content (59 lines) | stat: -rw-r--r-- 1,686 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/* yForth? - Written by Luca Padovani (C) 1996/97
 * ------------------------------------------------------------------------
 * This software is FreeWare as long as it comes with this header in each
 * source file, anyway you can use it or any part of it whatever
 * you want. It comes without any warranty, so use it at your own risk.
 * ------------------------------------------------------------------------
 * Module name: filee.c
 * Abstract:    File extension word set
 */

#include <stdio.h>
#include <string.h>
#include <malloc.h>
#include <errno.h>
#include "yforth.h"
#include "file.h"
#include "filee.h"

/**************************************************************************/
/* VARIABLES **************************************************************/
/**************************************************************************/

extern Char file_name[];

/**************************************************************************/
/* WORDS ******************************************************************/
/**************************************************************************/

void _file_status() {
	register FILE *f;
	get_file_name();
	f = fopen(file_name, "rb");
	*--sp = 0;
	if (f) {
		*--sp = 0;
		fclose(f);
	} else *--sp = errno;
}

void _flush_file() {
	register FILE *f = (FILE *) *sp;
	if (fflush(f)) sp[0] = errno;
	else sp[0] = 0;
}

void _rename_file() {
	register Char *file_name2;
	get_file_name();
	file_name2 = (Char *) malloc(strlen(file_name) + 1);
	if (file_name2) {
		strcpy(file_name2, file_name);
		get_file_name();
		if (rename(file_name, file_name2)) *--sp = errno;
		else *--sp = 0;
		free(file_name2);
	} else *--sp = errno;
}