Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
ccan
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
mirror
ccan
Commits
999da340
Commit
999da340
authored
Aug 04, 2008
by
dinesh
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed grab_file.c
parent
16b7eb13
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
7 additions
and
72 deletions
+7
-72
ccan/string/_info.c
ccan/string/_info.c
+1
-0
ccan/string/string.c
ccan/string/string.c
+2
-10
tools/Makefile
tools/Makefile
+4
-4
tools/grab_file.c
tools/grab_file.c
+0
-58
No files found.
ccan/string/_info.c
View file @
999da340
...
...
@@ -29,6 +29,7 @@ int main(int argc, char *argv[])
if
(
strcmp
(
argv
[
1
],
"depends"
)
==
0
)
{
printf
(
"ccan/talloc
\n
"
);
printf
(
"ccan/noerr
\n
"
);
return
0
;
}
...
...
ccan/string/string.c
View file @
999da340
...
...
@@ -10,6 +10,7 @@
#include <sys/stat.h>
#include <fcntl.h>
#include <errno.h>
#include "noerr/noerr.h"
char
**
strsplit
(
const
void
*
ctx
,
const
char
*
string
,
const
char
*
delims
,
unsigned
int
*
nump
)
...
...
@@ -47,15 +48,6 @@ char *strjoin(const void *ctx, char *strings[], const char *delim)
return
ret
;
}
static
int
close_no_errno
(
int
fd
)
{
int
ret
=
0
,
serrno
=
errno
;
if
(
close
(
fd
)
<
0
)
ret
=
errno
;
errno
=
serrno
;
return
ret
;
}
void
*
grab_fd
(
const
void
*
ctx
,
int
fd
)
{
int
ret
;
...
...
@@ -91,6 +83,6 @@ void *grab_file(const void *ctx, const char *filename)
return
NULL
;
buffer
=
grab_fd
(
ctx
,
fd
);
close_no
_errno
(
fd
);
close_no
err
(
fd
);
return
buffer
;
}
tools/Makefile
View file @
999da340
tools/ccan_depends
:
tools/ccan_depends.o tools/depends.o
tools/grab_file.o ccan/string/string.o ccan/talloc/talloc
.o
tools/ccan_depends
:
tools/ccan_depends.o tools/depends.o
ccan/string/string.o ccan/talloc/talloc.o ccan/noerr/noerr
.o
tools/run_tests
:
tools/run_tests.o tools/depends.o
tools/grab_file.o
ccan/tap/tap.o ccan/string/string.o ccan/talloc/talloc.o
tools/run_tests
:
tools/run_tests.o tools/depends.o ccan/tap/tap.o ccan/string/string.o ccan/talloc/talloc.o
tools/doc_extract
:
tools/doc_extract.o ccan/string/string.o ccan/talloc/talloc.o
tools/namespacize
:
tools/namespacize.o tools/
grab_file.o tools/
depends.o ccan/string/string.o ccan/talloc/talloc.o
tools/namespacize
:
tools/namespacize.o tools/depends.o ccan/string/string.o ccan/talloc/talloc.o
tools/run_tests.o tools/namespacize.o tools/
grab_file.o tools/
depends.o
:
tools/tools.h
tools/run_tests.o tools/namespacize.o tools/depends.o
:
tools/tools.h
tools-clean
:
ccanlint-clean
rm
-f
tools/ccan_depends tools/run_tests tools/doc_extract tools/namespacize
...
...
tools/grab_file.c
deleted
100644 → 0
View file @
16b7eb13
#include "tools.h"
#include "talloc/talloc.h"
#include "string/string.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <errno.h>
/*static int close_no_errno(int fd)
{
int ret = 0, serrno = errno;
if (close(fd) < 0)
ret = errno;
errno = serrno;
return ret;
}*/
/*void *grab_fd(const void *ctx, int fd)
{
int ret;
unsigned int max = 16384, size = 0;
char *buffer;
buffer = talloc_array(ctx, char, max+1);
while ((ret = read(fd, buffer + size, max - size)) > 0) {
size += ret;
if (size == max)
buffer = talloc_realloc(ctx, buffer, char, max*=2 + 1);
}
if (ret < 0) {
talloc_free(buffer);
buffer = NULL;
} else
buffer[size] = '\0';
return buffer;
}*/
/* This version adds one byte (for nul term) */
/*void *grab_file(const void *ctx, const char *filename)
{
int fd;
char *buffer;
if (streq(filename, "-"))
fd = dup(STDIN_FILENO);
else
fd = open(filename, O_RDONLY, 0);
if (fd < 0)
return NULL;
buffer = grab_fd(ctx, fd);
close_no_errno(fd);
return buffer;
}*/
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment