pike.git
/
src
/
builtin.cmod
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/builtin.cmod:1:
/* -*- c -*- || 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.cmod,v 1.
137
2003/
05
/
31
01:
14:
27
mast Exp $
+
|| $Id: builtin.cmod,v 1.
138
2003/
07
/
28
14:
47:38
mast Exp $
*/ #include "global.h" #include "interpret.h" #include "svalue.h" #include "opcodes.h" #include "pike_macros.h" #include "object.h" #include "program.h" #include "array.h"
pike.git/src/builtin.cmod:1771:
ptrdiff_t len = str->len; if( len > 0 ) { char *d = (char *)str->str; switch( str->size_shift ) { case 0: RETURN make_shared_binary_string0((p_wchar0 *)d,len); break; case 1:
-
RETURN make_shared_binary_string1((p_wchar1 *)d,len
>>1
);
+
RETURN make_shared_binary_string1((p_wchar1 *)d,len);
break; case 2:
-
RETURN make_shared_binary_string2((p_wchar2 *)d,len
>>2
);
+
RETURN make_shared_binary_string2((p_wchar2 *)d,len);
break; } } } push_text(""); return; } /*! @decl string get() *!