pike.git/
src/
array.c
Branch:
Tag:
Non-build tags
All tags
No tags
2003-01-14
2003-01-14 05:23:09 by Martin Nilsson <mani@lysator.liu.se>
46dd3b9f0836de12b9bb24443200c04449f67899 (
7
lines) (+
4
/-
3
)
[
Show
|
Annotate
]
Branch:
7.9
Strings are now sorted as binary strings.
Rev: src/array.c:1.136
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: array.c,v 1.
135
2003/01/
11
03
:
06
:
54
mast
Exp $
+
|| $Id: array.c,v 1.
136
2003/01/
14
05
:
23
:
09
nilsson
Exp $
*/ #include "global.h"
25:
#include "bignum.h" #include "cyclic.h"
-
RCSID("$Id: array.c,v 1.
135
2003/01/
11
03
:
06
:
54
mast
Exp $");
+
RCSID("$Id: array.c,v 1.
136
2003/01/
14
05
:
23
:
09
nilsson
Exp $");
PMOD_EXPORT struct array empty_array= {
853:
return 0; case T_STRING:
-
return DO_NOT_WARN((int)my_strcmp(a->u.string, b->u.string));
+
return DO_NOT_WARN((int)my_
quick_
strcmp(a->u.string, b->u.string));
case T_ARRAY: if(a==b) return 0;