Release calc version 2.10.2t30

This commit is contained in:
Landon Curt Noll
1996-07-06 04:17:00 -07:00
commit 4618313a82
388 changed files with 85904 additions and 0 deletions

40
help/strpos Normal file
View File

@@ -0,0 +1,40 @@
NAME
strpos - print the first occurrence of a string in another string
SYNOPSIS
strpos(s, t)
TYPES
s str
t str
return int
DESCRIPTION
This function returns the location of the first occurance of the string t
in the string s. If t is not found within s, 0 is returned. If t is
found at the beginning of s, 1 is returned.
EXAMPLE
> strpos("abcdefg", "c")
3
> strpos("abcdefg", "def")
4
> strpos("abcdefg", "defg")
4
> strpos("abcdefg", "defgh")
0
> strpos("abcdefg", "abc")
1
> strpos("abcdefg", "xyz")
0
LIMITS
none
LIBRARY
none
SEE ALSO
XXX - fill in