cosmetics

This commit is contained in:
Andreas Steffen 2007-01-09 21:56:05 +00:00
parent 66bc2429c6
commit 45a54b8574
1 changed files with 1 additions and 1 deletions

View File

@ -82,7 +82,7 @@ typedef struct chunk chunk_t;
#define chunkcpy(dst, chunk) \
{ memcpy(dst, chunk.ptr, chunk.len); dst += chunk.len;}
#define same_chunk(a, b) \
((a ).len == (b).len && memcmp((a).ptr, (b).ptr, (b).len) == 0 )
( (a).len == (b).len && memcmp((a).ptr, (b).ptr, (b).len) == 0 )
extern char* temporary_cyclic_buffer(void);
extern const char* concatenate_paths(const char *a, const char *b);