Changeset 9979
- Timestamp:
- Jan 20, 2010, 11:58:09 PM (12 years ago)
- Location:
- trunk/libtransmission
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/libtransmission/bencode.c
r9965 r9979 12 12 13 13 #include <assert.h> 14 #include <ctype.h> /* isdigit , isprint, isspace*/14 #include <ctype.h> /* isdigit */ 15 15 #include <errno.h> 16 16 #include <math.h> /* fabs */ -
trunk/libtransmission/bitset.h
r9965 r9979 17 17 #ifndef TR_BITSET_H 18 18 #define TR_BITSET_H 1 19 20 #include <assert.h>21 19 22 20 #include "transmission.h" -
trunk/libtransmission/json.c
r9868 r9979 13 13 #include <assert.h> 14 14 #include <ctype.h> 15 #include <errno.h> 15 #include <errno.h> /* EILSEQ, EINVAL */ 16 16 #include <string.h> 17 17 #include <stdio.h> /* printf */ -
trunk/libtransmission/magnet.c
r9868 r9979 12 12 13 13 #include <assert.h> 14 #include <ctype.h> /* tolower() */15 14 #include <string.h> /* strchr() */ 16 15 -
trunk/libtransmission/peer-msgs.c
r9890 r9979 14 14 #include <errno.h> 15 15 #include <limits.h> /* INT_MAX */ 16 #include <stdarg.h> 16 17 #include <stdio.h> 17 18 #include <stdlib.h> -
trunk/libtransmission/port-forwarding.c
r9868 r9979 12 12 13 13 #include <assert.h> 14 #include <errno.h>15 14 #include <string.h> 16 15 #include <stdio.h> -
trunk/libtransmission/torrent-ctor.c
r9868 r9979 11 11 */ 12 12 13 #include <errno.h> 13 #include <errno.h> /* EINVAL */ 14 14 #include "transmission.h" 15 15 #include "bencode.h" -
trunk/libtransmission/torrent.c
r9976 r9979 18 18 #include <assert.h> 19 19 #include <limits.h> /* INT_MAX */ 20 #include <math.h> /* fabs */20 #include <math.h> 21 21 #include <stdarg.h> 22 22 #include <string.h> /* memcmp */
Note: See TracChangeset
for help on using the changeset viewer.