blob: df622f65bb69cd6326fd407d9cef0fb7215b210b [file] [log] [blame]
Eric Andersenb2e3e9b2001-04-04 19:25:57 +00001/* vi: set sw=4 ts=4: */
Eric Andersenbe0c3602001-08-02 10:55:32 +00002
3
4#include <features.h>
5#include <string.h>
6#include <stdio.h>
7#include <fcntl.h>
8#include <paths.h>
9#include <unistd.h>
10
11
12#if __GNU_LIBRARY__ < 5
13
14
15/* Copyright (C) 1991 Free Software Foundation, Inc.
16This file is part of the GNU C Library.
17
18The GNU C Library is free software; you can redistribute it and/or
19modify it under the terms of the GNU Library General Public License as
20published by the Free Software Foundation; either version 2 of the
21License, or (at your option) any later version.
22
23The GNU C Library is distributed in the hope that it will be useful,
24but WITHOUT ANY WARRANTY; without even the implied warranty of
25MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
26Library General Public License for more details.
27
28You should have received a copy of the GNU Library General Public
29License along with the GNU C Library; see the file COPYING.LIB. If
30not, write to the Free Software Foundation, Inc., 675 Mass Ave,
31Cambridge, MA 02139, USA. */
32
33/*
34 * Modified by Manuel Novoa III Mar 1, 2001
35 *
36 * Converted original strtok.c code of strtok to __strtok_r.
37 * Cleaned up logic and reduced code size.
38 */
39
40
41char *strtok_r(char *s, const char *delim, char **save_ptr)
42{
43 char *token;
44
45 token = 0; /* Initialize to no token. */
46
47 if (s == 0) { /* If not first time called... */
48 s = *save_ptr; /* restart from where we left off. */
49 }
50
51 if (s != 0) { /* If not finished... */
52 *save_ptr = 0;
53
54 s += strspn(s, delim); /* Skip past any leading delimiters. */
55 if (*s != '\0') { /* We have a token. */
56 token = s;
57 *save_ptr = strpbrk(token, delim); /* Find token's end. */
58 if (*save_ptr != 0) {
59 /* Terminate the token and make SAVE_PTR point past it. */
60 *(*save_ptr)++ = '\0';
61 }
62 }
63 }
64
65 return token;
66}
67
68/* Basically getdelim() with the delimiter hard wired to '\n' */
69ssize_t getline(char **linebuf, size_t *n, FILE *file)
70{
71 return (getdelim (linebuf, n, '\n', file));
72}
73
74
Eric Andersenb2e3e9b2001-04-04 19:25:57 +000075/*
76 * daemon implementation for uClibc
77 *
78 * Copyright (c) 1991, 1993
79 * The Regents of the University of California. All rights reserved.
80 *
Eric Andersendb930942001-12-06 08:20:14 +000081 * Modified for uClibc by Erik Andersen <andersee@debian.org>
Eric Andersenb2e3e9b2001-04-04 19:25:57 +000082 *
83 * The uClibc Library is free software; you can redistribute it and/or
84 * modify it under the terms of the GNU Library General Public License as
85 * published by the Free Software Foundation; either version 2 of the
86 * License, or (at your option) any later version.
87 *
88 * The GNU C Library is distributed in the hope that it will be useful,
89 * but WITHOUT ANY WARRANTY; without even the implied warranty of
90 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
91 * Library General Public License for more details.
92 *
93 * You should have received a copy of the GNU Library General Public
94 * License along with the GNU C Library; see the file COPYING.LIB. If not,
95 * write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
96 * Boston, MA 02111-1307, USA.
97 *
98 * Original copyright notice is retained at the end of this file.
99 */
100
Eric Andersenb2e3e9b2001-04-04 19:25:57 +0000101int daemon( int nochdir, int noclose )
102{
103 int fd;
104
105 switch (fork()) {
106 case -1:
107 return(-1);
108 case 0:
109 break;
110 default:
111 _exit(0);
112 }
113
114 if (setsid() == -1)
115 return(-1);
116
117 if (!nochdir)
118 chdir("/");
119
120 if (!noclose && (fd = open(_PATH_DEVNULL, O_RDWR, 0)) != -1) {
121 dup2(fd, STDIN_FILENO);
122 dup2(fd, STDOUT_FILENO);
123 dup2(fd, STDERR_FILENO);
124 if (fd > 2)
125 close(fd);
126 }
127 return(0);
128}
Eric Andersenb2e3e9b2001-04-04 19:25:57 +0000129
130
131/*-
132 * Copyright (c) 1990, 1993
133 * The Regents of the University of California. All rights reserved.
134 *
135 * Redistribution and use in source and binary forms, with or without
136 * modification, are permitted provided that the following conditions
137 * are met:
138 * 1. Redistributions of source code must retain the above copyright
139 * notice, this list of conditions and the following disclaimer.
140 * 2. Redistributions in binary form must reproduce the above copyright
141 * notice, this list of conditions and the following disclaimer in the
142 * documentation and/or other materials provided with the distribution.
143 *
144 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
145 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
146 *
147 * 4. Neither the name of the University nor the names of its contributors
148 * may be used to endorse or promote products derived from this software
149 * without specific prior written permission.
150 *
151 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
152 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
153 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
154 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
155 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
156 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
157 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
158 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
159 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
160 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
161 * SUCH DAMAGE.
162 */
163
164
Eric Andersenbe0c3602001-08-02 10:55:32 +0000165#endif
166