Mercurial > noffle
comparison src/over.c @ 73:c874bd3c4bb8 noffle
[svn] Adjust consting
author | bears |
---|---|
date | Sat, 13 May 2000 16:35:17 +0100 |
parents | 125d79c9e586 |
children | 24d4cd032da5 |
comparison
equal
deleted
inserted
replaced
72:78e2ae741240 | 73:c874bd3c4bb8 |
---|---|
1 /* | 1 /* |
2 over.c | 2 over.c |
3 | 3 |
4 $Id: over.c 60 2000-05-09 22:28:38Z uh1763 $ | 4 $Id: over.c 79 2000-05-13 15:35:17Z bears $ |
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 |
43 time_t time; | 43 time_t time; |
44 }; | 44 }; |
45 | 45 |
46 Over * | 46 Over * |
47 new_Over( const char *subj, const char *from, | 47 new_Over( const char *subj, const char *from, |
48 const char *date, const char *msgId, char *ref, | 48 const char *date, const char *msgId, const char *ref, |
49 size_t bytes, size_t lines ) | 49 size_t bytes, size_t lines ) |
50 { | 50 { |
51 Over *ov; | 51 Over *ov; |
52 | 52 |
53 if ( ! ( ov = malloc( sizeof( Over ) ) ) ) | 53 if ( ! ( ov = malloc( sizeof( Over ) ) ) ) |