reference/strings/functions/strcoll.xml
e095023e408c8cb6378ae16bb6870343a3946919
...
...
@@ -1,6 +1,6 @@
1
1
<?xml version="1.0" encoding="utf-8"?>
2
2
<!-- $Revision$ -->
3
-
<refentry xmlns="http://docbook.org/ns/docbook" xml:id="function.strcoll">
3
+
<refentry xml:id="function.strcoll" xmlns="http://docbook.org/ns/docbook">
4
4
<refnamediv>
5
5
<refname>strcoll</refname>
6
6
<refpurpose>Locale based string comparison</refpurpose>
...
...
@@ -10,8 +10,8 @@
10
10
&reftitle.description;
11
11
<methodsynopsis>
12
12
<type>int</type><methodname>strcoll</methodname>
13
-
<methodparam><type>string</type><parameter>str1</parameter></methodparam>
14
-
<methodparam><type>string</type><parameter>str2</parameter></methodparam>
13
+
<methodparam><type>string</type><parameter>string1</parameter></methodparam>
14
+
<methodparam><type>string</type><parameter>string2</parameter></methodparam>
15
15
</methodsynopsis>
16
16
<para>
17
17
Note that this comparison is case sensitive, and unlike
...
...
@@ -29,7 +29,7 @@
29
29
<para>
30
30
<variablelist>
31
31
<varlistentry>
32
-
<term><parameter>str1</parameter></term>
32
+
<term><parameter>string1</parameter></term>
33
33
<listitem>
34
34
<para>
35
35
The first string.
...
...
@@ -37,7 +37,7 @@
37
37
</listitem>
38
38
</varlistentry>
39
39
<varlistentry>
40
-
<term><parameter>str2</parameter></term>
40
+
<term><parameter>string2</parameter></term>
41
41
<listitem>
42
42
<para>
43
43
The second string.
...
...
@@ -51,34 +51,10 @@
51
51
<refsect1 role="returnvalues">
52
52
&reftitle.returnvalues;
53
53
<para>
54
-
Returns &lt; 0 if <parameter>str1</parameter> is less than
55
-
<parameter>str2</parameter>; &gt; 0 if
56
-
<parameter>str1</parameter> is greater than
57
-
<parameter>str2</parameter>, and 0 if they are equal.
58
-
</para>
59
-
</refsect1>
60
-

61
-
<refsect1 role="changelog">
62
-
&reftitle.changelog;
63
-
<para>
64
-
<informaltable>
65
-
<tgroup cols="2">
66
-
<thead>
67
-
<row>
68
-
<entry>&Version;</entry>
69
-
<entry>&Description;</entry>
70
-
</row>
71
-
</thead>
72
-
<tbody>
73
-
<row>
74
-
<entry>4.2.3</entry>
75
-
<entry>
76
-
This function now works on win32.
77
-
</entry>
78
-
</row>
79
-
</tbody>
80
-
</tgroup>
81
-
</informaltable>
54
+
Returns &lt; 0 if <parameter>string1</parameter> is less than
55
+
<parameter>string2</parameter>; &gt; 0 if
56
+
<parameter>string1</parameter> is greater than
57
+
<parameter>string2</parameter>, and 0 if they are equal.
82
58
</para>
83
59
</refsect1>
84
60

...
...
@@ -100,7 +76,6 @@
100
76
</refsect1>
101
77

102
78
</refentry>
103
-

104
79
<!-- Keep this comment at the end of the file
105
80
Local variables:
106
81
mode: sgml
107
82