diff options
author | Thomas E. Dickey <dickey@invisible-island.net> | 1998-03-29 19:00:00 -0500 |
---|---|---|
committer | Thomas E. Dickey <dickey@invisible-island.net> | 1998-03-29 19:00:00 -0500 |
commit | af9be28bc2701ea448898282942bd5b957439f18 (patch) | |
tree | 8401b3f99897cbbe4855c7c8b5485a01efa73c59 /WWW/Library/Implementation/HTFile.c | |
parent | 43797ce7b89f70182191e7b41521772c7efa2d25 (diff) | |
download | lynx-snapshots-af9be28bc2701ea448898282942bd5b957439f18.tar.gz |
snapshot of project "lynx", label v2-8-1dev_5
Diffstat (limited to 'WWW/Library/Implementation/HTFile.c')
-rw-r--r-- | WWW/Library/Implementation/HTFile.c | 53 |
1 files changed, 26 insertions, 27 deletions
diff --git a/WWW/Library/Implementation/HTFile.c b/WWW/Library/Implementation/HTFile.c index 89a93d14..3bc93f1e 100644 --- a/WWW/Library/Implementation/HTFile.c +++ b/WWW/Library/Implementation/HTFile.c @@ -27,14 +27,13 @@ #ifdef DOSPATH #define HAVE_READDIR 1 -#include <dirent.h> #define USE_DIRENT -#include "HTDOS.h" +#include <HTDOS.h> #endif /* DOSPATH */ -#include "HTUtils.h" -#include "tcp.h" -#include "HTFile.h" /* Implemented here */ +#include <HTUtils.h> +#include <tcp.h> +#include <HTFile.h> /* Implemented here */ #ifdef VMS #include <stat.h> #endif /* VMS */ @@ -58,31 +57,31 @@ #define FREE(x) if (x) {free(x); x = NULL;} #ifdef VMS -#include "HTVMSUtils.h" +#include <HTVMSUtils.h> #endif /* VMS */ -#include "HTParse.h" -#include "HTTCP.h" +#include <HTParse.h> +#include <HTTCP.h> #ifndef DECNET -#include "HTFTP.h" +#include <HTFTP.h> #endif /* !DECNET */ -#include "HTAnchor.h" -#include "HTAtom.h" -#include "HTWriter.h" -#include "HTFWriter.h" -#include "HTInit.h" -#include "HTBTree.h" -#include "HTAlert.h" -#include "HTCJK.h" -#include "UCDefs.h" -#include "UCMap.h" -#include "UCAux.h" - -#include "LYexit.h" -#include "LYCharSets.h" -#include "LYGlobalDefs.h" -#include "LYUtils.h" -#include "LYLeaks.h" +#include <HTAnchor.h> +#include <HTAtom.h> +#include <HTWriter.h> +#include <HTFWriter.h> +#include <HTInit.h> +#include <HTBTree.h> +#include <HTAlert.h> +#include <HTCJK.h> +#include <UCDefs.h> +#include <UCMap.h> +#include <UCAux.h> + +#include <LYexit.h> +#include <LYCharSets.h> +#include <LYGlobalDefs.h> +#include <LYUtils.h> +#include <LYLeaks.h> typedef struct _HTSuffix { char * suffix; @@ -100,7 +99,7 @@ typedef struct _HTSuffix { #endif /* NGROUPS_MAX */ #endif /* NGROUPS */ -#include "HTML.h" /* For directory object building */ +#include <HTML.h> /* For directory object building */ #define PUTC(c) (*target->isa->put_character)(target, c) #define PUTS(s) (*target->isa->put_string)(target, s) |