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

Comparing CV/CV.xs (file contents):
Revision 1.69 by root, Wed Jun 7 17:18:46 2023 UTC vs.
Revision 1.70 by root, Thu Jun 8 15:42:03 2023 UTC

321 { 321 {
322 RETVAL += (*a & 0xc0) != 0x80; 322 RETVAL += (*a & 0xc0) != 0x80;
323 a++, b++; 323 a++, b++;
324 } 324 }
325 325
326 OUTPUT:
327 RETVAL
328
329int
330common_prefix_length_byte (a, b)
331 unsigned char *a = (unsigned char *)SvPVbyte_nolen ($arg);
332 unsigned char *b = (unsigned char *)SvPVbyte_nolen ($arg);
333 CODE:
334 RETVAL = 0;
335 while (*a == *b && *a)
336 a++, b++, RETVAL++;
326 OUTPUT: 337 OUTPUT:
327 RETVAL 338 RETVAL
328 339
329const char * 340const char *
330magic (SV *path_or_data) 341magic (SV *path_or_data)

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines