]> code.delx.au - spectrwm/blob - osx/osx.c
Fix man errors
[spectrwm] / osx / osx.c
1 #include <sys/types.h>
2 #include <sys/cdefs.h>
3
4 #include <errno.h>
5 #include <errno.h>
6 #include <limits.h>
7 #include <stdio.h>
8 #include <stdlib.h>
9 #include <string.h>
10
11 #include "osx.h"
12
13 /* --------------------------------------------------------------------------- */
14 /* $OpenBSD: strtonum.c,v 1.6 2004/08/03 19:38:01 millert Exp $ */
15
16 /*
17 * Copyright (c) 2004 Ted Unangst and Todd Miller
18 * All rights reserved.
19 *
20 * Permission to use, copy, modify, and distribute this software for any
21 * purpose with or without fee is hereby granted, provided that the above
22 * copyright notice and this permission notice appear in all copies.
23 *
24 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
25 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
27 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
28 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
29 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
30 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
31 */
32
33 #define INVALID 1
34 #define TOOSMALL 2
35 #define TOOLARGE 3
36
37 long long
38 strtonum(const char *numstr, long long minval, long long maxval,
39 const char **errstrp)
40 {
41 long long ll = 0;
42 char *ep;
43 int error = 0;
44 struct errval {
45 const char *errstr;
46 int err;
47 } ev[4] = {
48 { NULL, 0 },
49 { "invalid", EINVAL },
50 { "too small", ERANGE },
51 { "too large", ERANGE },
52 };
53
54 ev[0].err = errno;
55 errno = 0;
56 if (minval > maxval)
57 error = INVALID;
58 else {
59 ll = strtoll(numstr, &ep, 10);
60 if (numstr == ep || *ep != '\0')
61 error = INVALID;
62 else if ((ll == LLONG_MIN && errno == ERANGE) || ll < minval)
63 error = TOOSMALL;
64 else if ((ll == LLONG_MAX && errno == ERANGE) || ll > maxval)
65 error = TOOLARGE;
66 }
67 if (errstrp != NULL)
68 *errstrp = ev[error].errstr;
69 errno = ev[error].err;
70 if (error)
71 ll = 0;
72
73 return (ll);
74 }