Mercurial > noffle
comparison src/dynamicstring.c @ 54:125d79c9e586 noffle
[svn] * src/client.c, src/configfile.c, src/content.c, src/control.c,
src/database.c, src/dynamicstring.c, src/fetch.c, src/fetchlist.c,
src/group.c, src/itemlist.c, src/lock.c, src/log.c, src/noffle.c,
src/online.c, src/outgoing.c, src/over.c, src/post.c, src/protocol.c,
src/pseudo.c, src/request.c, src/server.c, src/util.c:
Added portable.h #include.
* src/client.h, src/database.h, src/fetch.c, src/group.h, src/lock.c,
src/outgoing.c, src/over.c, src/over.h, src/pseudo.c, src/server.c,
src/util.c, src/util.h: Added some #ifdefs to correctly include either
time.h or sys/time.h or both, depending on which are found.
* src/noffle.c: Changed the return-type of the signal-handlers bugReport()
and logSignal() to RETSIGTYPE, which is either void or int, depending on
the system you compile on (autoconf #defines the RETSIGTYPE).
author | uh1763 |
---|---|
date | Tue, 09 May 2000 23:28:38 +0100 |
parents | 32ba1198c6fa |
children | e612b263934f |
comparison
equal
deleted
inserted
replaced
53:9f3a4eccce32 | 54:125d79c9e586 |
---|---|
1 /* | 1 /* |
2 dynamicstring.c | 2 dynamicstring.c |
3 | 3 |
4 $Id: dynamicstring.c 51 2000-05-05 23:49:38Z uh1763 $ | 4 $Id: dynamicstring.c 60 2000-05-09 22:28:38Z uh1763 $ |
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 |
10 | 10 |
11 #include "dynamicstring.h" | 11 #include "dynamicstring.h" |
12 | 12 |
13 #include <sys/types.h> | 13 #include <sys/types.h> |
14 #include "log.h" | 14 #include "log.h" |
15 #include "portable.h" | |
15 | 16 |
16 struct DynStr | 17 struct DynStr |
17 { | 18 { |
18 size_t len; /* Current length (without trailing '\0') */ | 19 size_t len; /* Current length (without trailing '\0') */ |
19 size_t max; /* Max length that fits into buffer (incl. trailing '\0') */ | 20 size_t max; /* Max length that fits into buffer (incl. trailing '\0') */ |