[project @ 2002-08-11 23:04:02 by bursa]

[monkeyson] Multiple-include guards.

svn path=/import/netsurf/; revision=30
This commit is contained in:
James Bursa 2002-08-11 23:04:02 +00:00
parent 1a1c493d74
commit 12c3ff3d62
2 changed files with 12 additions and 2 deletions

View File

@ -1,10 +1,14 @@
/**
* $Id: layout.h,v 1.2 2002/05/27 23:21:11 bursa Exp $
* $Id: layout.h,v 1.3 2002/08/11 23:04:02 bursa Exp $
*/
#ifndef _NETSURF_RENDER_LAYOUT_H_
#define _NETSURF_RENDER_LAYOUT_H_
/**
* interface
*/
void layout_document(struct box * box, unsigned long width);
#endif

View File

@ -1,7 +1,12 @@
/**
* $Id: utils.h,v 1.2 2002/05/21 21:27:29 bursa Exp $
* $Id: utils.h,v 1.3 2002/08/11 23:04:02 bursa Exp $
*/
#ifndef _NETSURF_RENDER_UTILS_H_
#define _NETSURF_RENDER_UTILS_H_
#include <stdlib.h>
void die(const char * const error);
char * strip(char * const s);
int whitespace(const char * str);
@ -11,3 +16,4 @@ char * xstrdup(const char * const s);
char * load(const char * const path);
char * squash_whitespace(const char * s);
#endif