Denis Vlasenko | 83ea643 | 2006-11-16 02:27:24 +0000 | [diff] [blame] | 1 | /* |
| 2 | Copyright (c) 2001-2006, Gerrit Pape |
| 3 | All rights reserved. |
| 4 | |
| 5 | Redistribution and use in source and binary forms, with or without |
| 6 | modification, are permitted provided that the following conditions are met: |
| 7 | |
| 8 | 1. Redistributions of source code must retain the above copyright notice, |
| 9 | this list of conditions and the following disclaimer. |
| 10 | 2. Redistributions in binary form must reproduce the above copyright |
| 11 | notice, this list of conditions and the following disclaimer in the |
| 12 | documentation and/or other materials provided with the distribution. |
| 13 | 3. The name of the author may not be used to endorse or promote products |
| 14 | derived from this software without specific prior written permission. |
| 15 | |
| 16 | THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 17 | WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 18 | MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO |
| 19 | EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
| 20 | SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, |
| 21 | PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; |
| 22 | OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
| 23 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
| 24 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
| 25 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 | */ |
| 27 | |
Denis Vlasenko | 83ea643 | 2006-11-16 02:27:24 +0000 | [diff] [blame] | 28 | /*** byte.h ***/ |
| 29 | |
| 30 | extern unsigned byte_chr(char *s,unsigned n,int c); |
| 31 | |
| 32 | |
| 33 | /*** coe.h ***/ |
| 34 | |
| 35 | extern int coe(int); |
| 36 | |
| 37 | |
| 38 | /*** direntry.h ***/ |
| 39 | |
| 40 | #define direntry struct dirent |
| 41 | |
| 42 | |
Denis Vlasenko | 83ea643 | 2006-11-16 02:27:24 +0000 | [diff] [blame] | 43 | /*** tai.h ***/ |
| 44 | |
| 45 | struct tai { |
| 46 | uint64_t x; |
Denis Vlasenko | 8c78395 | 2007-01-27 22:21:52 +0000 | [diff] [blame] | 47 | }; |
Denis Vlasenko | 83ea643 | 2006-11-16 02:27:24 +0000 | [diff] [blame] | 48 | |
| 49 | #define tai_unix(t,u) ((void) ((t)->x = 4611686018427387914ULL + (uint64_t) (u))) |
| 50 | |
Denis Vlasenko | 83ea643 | 2006-11-16 02:27:24 +0000 | [diff] [blame] | 51 | #define TAI_PACK 8 |
Denis Vlasenko | 8c78395 | 2007-01-27 22:21:52 +0000 | [diff] [blame] | 52 | //extern void tai_pack(char *,const struct tai *); |
Denis Vlasenko | 83ea643 | 2006-11-16 02:27:24 +0000 | [diff] [blame] | 53 | extern void tai_unpack(const char *,struct tai *); |
| 54 | |
| 55 | extern void tai_uint(struct tai *,unsigned); |
| 56 | |
| 57 | |
| 58 | /*** taia.h ***/ |
| 59 | |
| 60 | struct taia { |
| 61 | struct tai sec; |
| 62 | unsigned long nano; /* 0...999999999 */ |
| 63 | unsigned long atto; /* 0...999999999 */ |
Denis Vlasenko | 8c78395 | 2007-01-27 22:21:52 +0000 | [diff] [blame] | 64 | }; |
Denis Vlasenko | 83ea643 | 2006-11-16 02:27:24 +0000 | [diff] [blame] | 65 | |
Denis Vlasenko | 8c78395 | 2007-01-27 22:21:52 +0000 | [diff] [blame] | 66 | //extern void taia_tai(const struct taia *,struct tai *); |
Denis Vlasenko | 83ea643 | 2006-11-16 02:27:24 +0000 | [diff] [blame] | 67 | |
| 68 | extern void taia_now(struct taia *); |
| 69 | |
Denis Vlasenko | 83ea643 | 2006-11-16 02:27:24 +0000 | [diff] [blame] | 70 | extern void taia_add(struct taia *,const struct taia *,const struct taia *); |
| 71 | extern void taia_addsec(struct taia *,const struct taia *,int); |
| 72 | extern void taia_sub(struct taia *,const struct taia *,const struct taia *); |
| 73 | extern void taia_half(struct taia *,const struct taia *); |
| 74 | extern int taia_less(const struct taia *,const struct taia *); |
| 75 | |
| 76 | #define TAIA_PACK 16 |
| 77 | extern void taia_pack(char *,const struct taia *); |
Denis Vlasenko | 8c78395 | 2007-01-27 22:21:52 +0000 | [diff] [blame] | 78 | //extern void taia_unpack(const char *,struct taia *); |
Denis Vlasenko | 83ea643 | 2006-11-16 02:27:24 +0000 | [diff] [blame] | 79 | |
Denis Vlasenko | 8c78395 | 2007-01-27 22:21:52 +0000 | [diff] [blame] | 80 | //#define TAIA_FMTFRAC 19 |
| 81 | //extern unsigned taia_fmtfrac(char *,const struct taia *); |
Denis Vlasenko | 83ea643 | 2006-11-16 02:27:24 +0000 | [diff] [blame] | 82 | |
| 83 | extern void taia_uint(struct taia *,unsigned); |
| 84 | |
| 85 | |
| 86 | /*** fmt_ptime.h ***/ |
| 87 | |
| 88 | #define FMT_PTIME 30 |
| 89 | |
Denis Vlasenko | 8c78395 | 2007-01-27 22:21:52 +0000 | [diff] [blame] | 90 | /* NUL terminated */ |
| 91 | extern void fmt_ptime30nul(char *, struct taia *); |
| 92 | /* NOT terminated! */ |
| 93 | extern unsigned fmt_taia25(char *, struct taia *); |
Denis Vlasenko | 83ea643 | 2006-11-16 02:27:24 +0000 | [diff] [blame] | 94 | |
| 95 | |
Denis Vlasenko | 83ea643 | 2006-11-16 02:27:24 +0000 | [diff] [blame] | 96 | /*** iopause.h ***/ |
| 97 | |
| 98 | typedef struct pollfd iopause_fd; |
| 99 | #define IOPAUSE_READ POLLIN |
| 100 | #define IOPAUSE_WRITE POLLOUT |
| 101 | |
| 102 | extern void iopause(iopause_fd *,unsigned,struct taia *,struct taia *); |
| 103 | |
| 104 | |
| 105 | /*** lock.h ***/ |
| 106 | |
| 107 | extern int lock_ex(int); |
| 108 | extern int lock_un(int); |
| 109 | extern int lock_exnb(int); |
| 110 | |
| 111 | |
Denis Vlasenko | 83ea643 | 2006-11-16 02:27:24 +0000 | [diff] [blame] | 112 | /*** open.h ***/ |
| 113 | |
| 114 | extern int open_read(const char *); |
| 115 | extern int open_excl(const char *); |
| 116 | extern int open_append(const char *); |
| 117 | extern int open_trunc(const char *); |
| 118 | extern int open_write(const char *); |
| 119 | |
| 120 | |
Denis Vlasenko | 83ea643 | 2006-11-16 02:27:24 +0000 | [diff] [blame] | 121 | /*** pmatch.h ***/ |
| 122 | |
| 123 | extern unsigned pmatch(const char *, const char *, unsigned); |
| 124 | |
| 125 | |
Denis Vlasenko | 83ea643 | 2006-11-16 02:27:24 +0000 | [diff] [blame] | 126 | /*** str.h ***/ |
| 127 | |
| 128 | extern unsigned str_chr(const char *,int); /* never returns NULL */ |
| 129 | |
Denis Vlasenko | e2473f8 | 2007-01-27 22:22:17 +0000 | [diff] [blame] | 130 | #define str_diff(s,t) strcmp((s), (t)) |
| 131 | #define str_equal(s,t) (!strcmp((s), (t))) |