pike.git/
src/
builtin_functions.c
Branch:
Tag:
Non-build tags
All tags
No tags
2007-03-03
2007-03-03 21:45:14 by Martin Nilsson <mani@lysator.liu.se>
72de95f792212f1a899181a0f1c8b18eba052375 (
13
lines) (+
7
/-
6
)
[
Show
|
Annotate
]
Branch:
7.9
Fixed refdoc prototype syntax
Rev: src/builtin_functions.c:1.627
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.
626
2007/03/03
18
:
15
:
34
grubba
Exp $
+
|| $Id: builtin_functions.c,v 1.
627
2007/03/03
21
:
45
:
14
nilsson
Exp $
*/ #include "global.h"
1471:
* Some wide-strings related functions */
-
/*! @decl
string8
string_to_unicode(string s)
+
/*! @decl
string(8)
string_to_unicode(string s)
*! *! Converts a string into an UTF16 compliant byte-stream. *!
1768:
push_string(out); }
-
/*! @decl
string8
string_to_utf8(string s)
-
*! @decl
string8
string_to_utf8(string s, int extended)
+
/*! @decl
string(8)
string_to_utf8(string s)
+
*! @decl
string(8)
string_to_utf8(string s, int extended)
*! *! Converts a string into an UTF-8 compliant byte-stream. *!
1902:
push_string(out); }
-
/*! @decl string utf8_to_string(
string8
s)
-
*! @decl string utf8_to_string(
string8
s, int extended)
+
/*! @decl string utf8_to_string(
string(8)
s)
+
*! @decl string utf8_to_string(
string(8)
s, int extended)
*! *! Converts an UTF-8 byte-stream into a string. *!