Release calc version 2.10.3t5.45

This commit is contained in:
Landon Curt Noll
1997-10-04 20:06:29 -07:00
parent 4618313a82
commit 6e10e97592
300 changed files with 38279 additions and 8584 deletions

39
help/name Normal file
View File

@@ -0,0 +1,39 @@
NAME
name - return name of some kinds of structure
SYNOPSIS
name(val)
TYPES
val any
return string or null value
DESCRIPTION
If val is a named block or open file stream, name(val) returns the
name associated with val. Otherwise the null value is returned.
Since the name associated with a file stream is that used when the stream
was opened, different names may refer to the same file, e.g. "foo"
and "./foo".
EXAMPLE
> A = blk("alpha");
> name(A)
"alpha"
> f = fopen("/tmp/beta", "w")
> name(f)
"/tmp/beta"
> names(files(0))
"(stdin)"
LIMITS
none
LIBRARY
none - XXX ???
SEE ALSO
blk, fopen