Mercurial > pidgin
comparison libpurple/protocols/zephyr/ZGetLocs.c @ 31086:a8cc50c2279f
Remove trailing whitespace
author | Richard Laager <rlaager@wiktel.com> |
---|---|
date | Tue, 04 Jan 2011 06:55:30 +0000 |
parents | 5fe8042783c1 |
children |
comparison
equal
deleted
inserted
replaced
31085:44f53d3fc54f | 31086:a8cc50c2279f |
---|---|
3 * | 3 * |
4 * Created by: Robert French | 4 * Created by: Robert French |
5 * | 5 * |
6 * Copyright (c) 1987 by the Massachusetts Institute of Technology. | 6 * Copyright (c) 1987 by the Massachusetts Institute of Technology. |
7 * For copying and distribution information, see the file | 7 * For copying and distribution information, see the file |
8 * "mit-copyright.h". | 8 * "mit-copyright.h". |
9 */ | 9 */ |
10 | 10 |
11 #include "internal.h" | 11 #include "internal.h" |
12 | 12 |
13 #define min(a,b) ((a)<(b)?(a):(b)) | 13 #define min(a,b) ((a)<(b)?(a):(b)) |
16 Code_t ZGetLocations(ZLocations_t *location, int *numlocs); | 16 Code_t ZGetLocations(ZLocations_t *location, int *numlocs); |
17 | 17 |
18 Code_t ZGetLocations(ZLocations_t *location, int *numlocs) | 18 Code_t ZGetLocations(ZLocations_t *location, int *numlocs) |
19 { | 19 { |
20 int i; | 20 int i; |
21 | 21 |
22 if (!__locate_list) | 22 if (!__locate_list) |
23 return (ZERR_NOLOCATIONS); | 23 return (ZERR_NOLOCATIONS); |
24 | 24 |
25 if (__locate_next == __locate_num) | 25 if (__locate_next == __locate_num) |
26 return (ZERR_NOMORELOCS); | 26 return (ZERR_NOMORELOCS); |
27 | 27 |
28 for (i=0;i<min(*numlocs, __locate_num-__locate_next);i++) | 28 for (i=0;i<min(*numlocs, __locate_num-__locate_next);i++) |
29 location[i] = __locate_list[i+__locate_next]; | 29 location[i] = __locate_list[i+__locate_next]; |
30 | 30 |
31 if (__locate_num-__locate_next < *numlocs) | 31 if (__locate_num-__locate_next < *numlocs) |
32 *numlocs = __locate_num-__locate_next; | 32 *numlocs = __locate_num-__locate_next; |
33 | 33 |
34 __locate_next += *numlocs; | 34 __locate_next += *numlocs; |
35 | 35 |
36 return (ZERR_NONE); | 36 return (ZERR_NONE); |
37 } | 37 } |