summaryrefslogtreecommitdiffstats
path: root/innbbsd/clibrary.h
diff options
context:
space:
mode:
authorin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-01-08 15:54:00 +0800
committerin2 <in2@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2004-01-08 15:54:00 +0800
commit271bcfc4e7d98aafb59b6e67399244f635ee74e8 (patch)
tree6c8c84e636581109db1de66d4036441c36b607c8 /innbbsd/clibrary.h
parent9b4d34a17c6061171456ae8e4b63dcd270f53091 (diff)
downloadpttbbs-271bcfc4e7d98aafb59b6e67399244f635ee74e8.tar
pttbbs-271bcfc4e7d98aafb59b6e67399244f635ee74e8.tar.gz
pttbbs-271bcfc4e7d98aafb59b6e67399244f635ee74e8.tar.bz2
pttbbs-271bcfc4e7d98aafb59b6e67399244f635ee74e8.tar.lz
pttbbs-271bcfc4e7d98aafb59b6e67399244f635ee74e8.tar.xz
pttbbs-271bcfc4e7d98aafb59b6e67399244f635ee74e8.tar.zst
pttbbs-271bcfc4e7d98aafb59b6e67399244f635ee74e8.zip
indent -i4
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1473 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'innbbsd/clibrary.h')
-rw-r--r--innbbsd/clibrary.h151
1 files changed, 78 insertions, 73 deletions
diff --git a/innbbsd/clibrary.h b/innbbsd/clibrary.h
index df913aff..1248e650 100644
--- a/innbbsd/clibrary.h
+++ b/innbbsd/clibrary.h
@@ -1,42 +1,43 @@
-/* $Revision: 1.1 $
-**
-** Here be declarations of routines and variables in the C library.
-** You must #include <sys/types.h> and <stdio.h> before this file.
-*/
+/*
+ * $Revision: 1.1 $ *
+ *
+ * Here be declarations of routines and variables in the C library. * You
+ * must #include <sys/types.h> and <stdio.h> before this file.
+ */
#if defined(DO_HAVE_UNISTD)
#include <unistd.h>
-#endif /* defined(DO_HAVE_UNISTD) */
+#endif /* defined(DO_HAVE_UNISTD) */
#if defined(DO_HAVE_VFORK)
#include <vfork.h>
-#endif /* defined(DO_HAVE_VFORK) */
+#endif /* defined(DO_HAVE_VFORK) */
- /* Generic pointer, used by memcpy, malloc, etc. */
- /* =()<typedef @<POINTER>@ *POINTER;>()= */
-typedef char *POINTER;
- /* What is a file offset? Will not work unless long! */
- /* =()<typedef @<OFFSET_T>@ OFFSET_T;>()= */
-typedef long OFFSET_T;
- /* What is the type of an object size? */
- /* =()<typedef @<SIZE_T>@ SIZE_T;>()= */
-typedef int SIZE_T;
- /* What is the type of a passwd uid and gid, for use in chown(2)? */
- /* =()<typedef @<UID_T>@ UID_T;>()= */
-typedef int UID_T;
- /* =()<typedef @<GID_T>@ GID_T;>()= */
-typedef int GID_T;
- /* =()<typedef @<PID_T>@ PID_T;>()= */
-typedef int PID_T;
- /* What should a signal handler return? */
- /* =()<#define SIGHANDLER @<SIGHANDLER>@>()= */
+/* Generic pointer, used by memcpy, malloc, etc. */
+/* =()<typedef @<POINTER>@ *POINTER;>()= */
+typedef char *POINTER;
+/* What is a file offset? Will not work unless long! */
+/* =()<typedef @<OFFSET_T>@ OFFSET_T;>()= */
+typedef long OFFSET_T;
+/* What is the type of an object size? */
+/* =()<typedef @<SIZE_T>@ SIZE_T;>()= */
+typedef int SIZE_T;
+/* What is the type of a passwd uid and gid, for use in chown(2)? */
+/* =()<typedef @<UID_T>@ UID_T;>()= */
+typedef int UID_T;
+/* =()<typedef @<GID_T>@ GID_T;>()= */
+typedef int GID_T;
+/* =()<typedef @<PID_T>@ PID_T;>()= */
+typedef int PID_T;
+/* What should a signal handler return? */
+/* =()<#define SIGHANDLER @<SIGHANDLER>@>()= */
#define SIGHANDLER void
#if defined(SIG_DFL)
- /* What types of variables can be modified in a signal handler? */
- /* =()<typedef @<SIGVAR>@ SIGVAR;>()= */
-typedef int SIGVAR;
-#endif /* defined(SIG_DFL) */
+/* What types of variables can be modified in a signal handler? */
+/* =()<typedef @<SIGVAR>@ SIGVAR;>()= */
+typedef int SIGVAR;
+#endif /* defined(SIG_DFL) */
/* =()<#include @<STR_HEADER>@>()= */
#include <string.h>
@@ -45,42 +46,43 @@ typedef int SIGVAR;
/*
-** It's a pity we have to go through these contortions, for broken
-** systems that have fd_set but not the FD_SET.
-*/
+ * * It's a pity we have to go through these contortions, for broken *
+ * systems that have fd_set but not the FD_SET.
+ */
#if defined(FD_SETSIZE)
#define FDSET fd_set
#else
#include <sys/param.h>
#if !defined(NOFILE)
- error -- #define NOFILE to the number of files allowed on your machine!
-#endif /* !defined(NOFILE) */
+error--
+#define NOFILE to the number of files allowed on your machine!
+#endif /* !defined(NOFILE) */
#if !defined(howmany)
#define howmany(x, y) (((x) + ((y) - 1)) / (y))
-#endif /* !defined(howmany) */
+#endif /* !defined(howmany) */
#define FD_SETSIZE NOFILE
#define NFDBITS (sizeof (long) * 8)
typedef struct _FDSET {
- long fds_bits[howmany(FD_SETSIZE, NFDBITS)];
-} FDSET;
+ long fds_bits[howmany(FD_SETSIZE, NFDBITS)];
+} FDSET;
#define FD_SET(n, p) (p)->fds_bits[(n) / NFDBITS] |= (1 << ((n) % NFDBITS))
#define FD_CLR(n, p) (p)->fds_bits[(n) / NFDBITS] &= ~(1 << ((n) % NFDBITS))
#define FD_ISSET(n, p) ((p)->fds_bits[(n) / NFDBITS] & (1 << ((n) % NFDBITS)))
#define FD_ZERO(p) (void)memset((POINTER)(p), 0, sizeof *(p))
-#endif /* defined(FD_SETSIZE) */
+#endif /* defined(FD_SETSIZE) */
#if !defined(SEEK_SET)
#define SEEK_SET 0
-#endif /* !defined(SEEK_SET) */
+#endif /* !defined(SEEK_SET) */
#if !defined(SEEK_END)
#define SEEK_END 2
-#endif /* !defined(SEEK_END) */
+#endif /* !defined(SEEK_END) */
/*
-** We must use #define to set FREEVAL, since "typedef void FREEVAL;" doesn't
-** work on some broken compilers, sigh.
-*/
+ * * We must use #define to set FREEVAL, since "typedef void FREEVAL;"
+ * doesn't * work on some broken compilers, sigh.
+ */
/* =()<#define FREEVAL @<FREEVAL>@>()= */
#define FREEVAL int
@@ -88,50 +90,53 @@ typedef struct _FDSET {
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
-#if 0 /* old style, use stdio, stdlib, unistd, string now */
-extern int optind;
-extern char *optarg;
+#if 0 /* old style, use stdio, stdlib, unistd,
+ * string now */
+extern int optind;
+extern char *optarg;
#if !defined(__STDC__)
-extern int errno;
-#endif /* !defined(__STDC__) */
+extern int errno;
+#endif /* !defined(__STDC__) */
-extern char *getenv();
-extern char *inet_ntoa();
-extern char *mktemp();
+extern char *getenv();
+extern char *inet_ntoa();
+extern char *mktemp();
#if !defined(strerror)
-extern char *strerror();
-#endif /* !defined(strerror) */
-extern long atol();
-extern time_t time();
-extern unsigned long inet_addr();
-extern FREEVAL free();
-extern POINTER malloc();
-extern POINTER realloc();
+extern char *strerror();
+#endif /* !defined(strerror) */
+extern long atol();
+extern time_t time();
+extern unsigned long inet_addr();
+extern FREEVAL free();
+extern POINTER malloc();
+extern POINTER realloc();
#if defined(ACT_MMAP)
-extern char *mmap();
-#endif /* defined(ACT_MMAP) */
+extern char *mmap();
+#endif /* defined(ACT_MMAP) */
/* Some backward systems need this. */
-extern FILE *popen();
+extern FILE *popen();
-/* This is in <mystring.h>, but not in some system string headers,
- * so we put it here just in case. */
-extern int strncasecmp();
+/*
+ * This is in <mystring.h>, but not in some system string headers, so we put
+ * it here just in case.
+ */
+extern int strncasecmp();
/* =()<extern @<ABORTVAL>@ abort();>()= */
-extern int abort();
+extern int abort();
/* =()<extern @<ALARMVAL>@ alarm();>()= */
-extern int alarm();
+extern int alarm();
/* =()<extern @<EXITVAL>@ exit();>()= */
-extern void exit();
+extern void exit();
/* =()<extern @<GETPIDVAL>@ getpid();>()= */
-extern int getpid();
+extern int getpid();
/* =()<extern @<LSEEKVAL>@ lseek();>()= */
-extern off_t lseek();
+extern off_t lseek();
/* =()<extern @<QSORTVAL>@ qsort();>()= */
-extern int qsort();
+extern int qsort();
/* =()<extern @<SLEEPVAL>@ sleep();>()= */
-extern int sleep();
+extern int sleep();
/* =()<extern @<_EXITVAL>@ _exit();>()= */
-extern int _exit();
+extern int _exit();
#endif