Mercurial > noffle
comparison src/content.c @ 59:e612b263934f noffle
[svn] Changed some variable types and used some casts to avoid compiler
warnings about signedness. In general, int should be used for parameters
for allowing a signedness assertion in the function.
author | enz |
---|---|
date | Fri, 12 May 2000 17:52:41 +0100 |
parents | 125d79c9e586 |
children | 22b3e3dfc8c2 |
comparison
equal
deleted
inserted
replaced
58:b4e6f7f96135 | 59:e612b263934f |
---|---|
1 /* | 1 /* |
2 content.c | 2 content.c |
3 | 3 |
4 $Id: content.c 60 2000-05-09 22:28:38Z uh1763 $ | 4 $Id: content.c 65 2000-05-12 16:52:41Z enz $ |
5 */ | 5 */ |
6 | 6 |
7 #if HAVE_CONFIG_H | 7 #if HAVE_CONFIG_H |
8 #include <config.h> | 8 #include <config.h> |
9 #endif | 9 #endif |
29 DIR *dir; /* Directory for browsing through all | 29 DIR *dir; /* Directory for browsing through all |
30 groups */ | 30 groups */ |
31 int vecFirst; /* First article number in vector */ | 31 int vecFirst; /* First article number in vector */ |
32 int first; /* First live article number */ | 32 int first; /* First live article number */ |
33 int last; /* Last article number */ | 33 int last; /* Last article number */ |
34 unsigned int size; /* Number of overviews. */ | 34 int size; /* Number of overviews. */ |
35 unsigned int max; /* Size of elem. */ | 35 int max; /* Size of elem. */ |
36 Over **elem; /* Ptr to array with ptrs to overviews. | 36 Over **elem; /* Ptr to array with ptrs to overviews. |
37 NULL entries for non-existing article numbers | 37 NULL entries for non-existing article numbers |
38 in group. */ | 38 in group. */ |
39 Str name; | 39 Str name; |
40 Str file; | 40 Str file; |