mirror of
https://github.com/netsurf-browser/netsurf
synced 2024-12-22 20:16:54 +03:00
[project @ 2002-08-11 23:04:02 by bursa]
[monkeyson] Multiple-include guards. svn path=/import/netsurf/; revision=30
This commit is contained in:
parent
1a1c493d74
commit
12c3ff3d62
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user