comparison src/util.c @ 8432:33cc36f5a7a6

[gaim-migrate @ 9162] Added gaim_add_eight(), which adds 8 to a number and returns it. You may all blame SimGuy for this. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Fri, 12 Mar 2004 04:33:30 +0000
parents fec4c1fb2ac8
children 964d42c74ff7
comparison
equal deleted inserted replaced
8431:deb36081aaf2 8432:33cc36f5a7a6
2419 *a = '\0'; 2419 *a = '\0';
2420 2420
2421 return out; 2421 return out;
2422 } 2422 }
2423 2423
2424 int
2425 gaim_add_eight(int i)
2426 {
2427 return (i + 8);
2428 }