summaryrefslogtreecommitdiff
path: root/strings/string.doc
diff options
context:
space:
mode:
authorDavi Arnaut <davi.arnaut@oracle.com>2010-07-23 17:17:14 -0300
committerDavi Arnaut <davi.arnaut@oracle.com>2010-07-23 17:17:14 -0300
commit507ca08ff6a731c811a82869f85ba5166e8a9df1 (patch)
treed634717d00e7631767edfde544c80bee53197f21 /strings/string.doc
parent75e22123972f3404cd384839695c9e7b0165565f (diff)
downloadmariadb-git-507ca08ff6a731c811a82869f85ba5166e8a9df1.tar.gz
WL#5498: Remove dead and unused source code
Remove unused string functions. include/m_string.h: Remove prototypes for unused string functions and for functions that do not exist anymore.
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;