summaryrefslogtreecommitdiff
path: root/strings/string.doc
diff options
context:
space:
mode:
Diffstat (limited to 'strings/string.doc')
-rw-r--r--strings/string.doc5
1 files changed, 0 insertions, 5 deletions
diff --git a/strings/string.doc b/strings/string.doc
index 954f7226759..fcd020b8c60 100644
--- a/strings/string.doc
+++ b/strings/string.doc
@@ -77,11 +77,6 @@ Speciella användbara nya string-rutiner:
The result is a pointer to the first character of the located instance,
or NullS if pat does not occur in src.
- strinstr(src, pat) looks for an instance of pat in src. pat is not a
- regex(3) pattern, it is a literal string which must be matched exactly.
- The result 0 if the pattern was not found else it is the start char of
- the pattern counted from the begining of the string.
-
strmake(dst,src,length) moves length characters, or until end, of src to
dst and appends a closing NUL to dst.
strmake() returns pointer to closing null;