home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
RISC DISC 2
/
RISC_DISC_2.iso
/
pd_share
/
program
/
language
/
bob
/
!ArmBob
/
progs
/
h
/
save
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1994-12-31
|
211 b
|
15 lines
/* save string s to file name and filetype type */
save(s,name,type)
{
local start;
swi("OS_File", vector {
10;
@(name);
type;
0;
start = @(s);
start+sizeof(s);
0; 0; });
}