comparison src/cipher.c @ 11333:b0185f9214d3

[gaim-migrate @ 13546] Remove // comments committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Wed, 24 Aug 2005 17:10:20 +0000
parents f93d434ee222
children 59aa7080eb2d
comparison
equal deleted inserted replaced
11332:1d97f18595be 11333:b0185f9214d3
370 370
371 static inline void le32_to_cpu_array(guint32 *buf, unsigned int words) 371 static inline void le32_to_cpu_array(guint32 *buf, unsigned int words)
372 { 372 {
373 while (words--) { 373 while (words--) {
374 *buf=GUINT_FROM_LE(*buf); 374 *buf=GUINT_FROM_LE(*buf);
375 // __le32_to_cpus(buf);
376 buf++; 375 buf++;
377 } 376 }
378 } 377 }
379 378
380 static inline void cpu_to_le32_array(guint32 *buf, unsigned int words) 379 static inline void cpu_to_le32_array(guint32 *buf, unsigned int words)
381 { 380 {
382 while (words--) { 381 while (words--) {
383 // __cpu_to_le32s(buf);
384 *buf=GUINT_TO_LE(*buf); 382 *buf=GUINT_TO_LE(*buf);
385 buf++; 383 buf++;
386 } 384 }
387 } 385 }
388 386