ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/CV/CV.xs
(Generate patch)

Comparing CV/CV.xs (file contents):
Revision 1.28 by root, Mon Aug 22 00:30:58 2005 UTC vs.
Revision 1.29 by root, Sat Sep 24 01:25:17 2005 UTC

126 126
127MODULE = Gtk2::CV PACKAGE = Gtk2::CV 127MODULE = Gtk2::CV PACKAGE = Gtk2::CV
128 128
129PROTOTYPES: ENABLE 129PROTOTYPES: ENABLE
130 130
131# missing function in perl. really :)
132int
133common_prefix_length (a, b)
134 unsigned char *a = (unsigned char *)SvPVutf8_nolen ($arg);
135 unsigned char *b = (unsigned char *)SvPVutf8_nolen ($arg);
136 CODE:
137 RETVAL = 0;
138
139 while (*a == *b && *a)
140 {
141 RETVAL += (*a & 0xc0) != 0x80;
142 a++, b++;
143 }
144
145 OUTPUT:
146 RETVAL
147
131# missing in Gtk2 perl module 148# missing in Gtk2 perl module
132 149
133gboolean 150gboolean
134gdk_net_wm_supports (GdkAtom property) 151gdk_net_wm_supports (GdkAtom property)
135 CODE: 152 CODE:

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines