pike.git/
src/
builtin_functions.c
Branch:
Tag:
Non-build tags
All tags
No tags
2010-03-30
2010-03-30 11:54:56 by Peter Bortas <zino@lysator.liu.se>
38cb40300e798cafa409c0dcb09bb271bd682afb (
18
lines) (+
14
/-
4
)
[
Show
|
Annotate
]
Branch:
7.9
Added more xrefs to the doc.
Rev: src/builtin_functions.c:1.699
2:
|| This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: builtin_functions.c,v 1.
698
2010/
02
/
23
14
:
37
:
22
grubba
Exp $
+
|| $Id: builtin_functions.c,v 1.
699
2010/
03
/
30
11
:
54
:
56
peter
Exp $
*/ #include "global.h"
868:
*! In all other cases @expr{-1@} will be returned when not found. *! *! @seealso
-
*! @[indices()], @[values()], @[zero_type()]
+
*! @[indices()], @[values()], @[zero_type()]
, @[has_value()],
+
*! @[has_prefix()], @[has_suffix()]
*/ PMOD_EXPORT void f_search(INT32 args) {
1075:
*! *! Returns @expr{1@} if the string @[s] starts with @[prefix], *! returns @expr{0@} (zero) otherwise.
+
*!
+
*! @seealso
+
*! @[has_suffix()], @[has_value()], @[search()]
*/ PMOD_EXPORT void f_has_prefix(INT32 args) {
1170:
*! *! Returns @expr{1@} if the string @[s] ends with @[suffix], *! returns @expr{0@} (zero) otherwise.
+
*!
+
*! @seealso
+
*! @[has_prefix()], @[has_value()], @[search()]
*/ PMOD_EXPORT void f_has_suffix(INT32 args) {
1258:
*! a proper index by @[has_index()] *! *! @seealso
-
*! @[has_value()], @[indices()], @[search()], @[values()], @[zero_type()]
+
*! @[has_value()], @[
has_prefix()], @[has_suffix()], @[
indices()],
+
*!
@[search()], @[values()], @[zero_type()]
*/ PMOD_EXPORT void f_has_index(INT32 args) {
1355:
*! @endcode *! *! @seealso
-
*! @[has_index()], @[indices()], @[search()], @[values()], @[zero_type()]
+
*! @[has_index()], @[indices()], @[search()], @[
has_prefix()],
+
*! @[has_suffix()], @[
values()], @[zero_type()]
*/ PMOD_EXPORT void f_has_value(INT32 args) {