This website works better with JavaScript.
Home
Help
Register
Sign In
mirrors
/
libowfat
mirror of
/home/gitosis/repositories/libowfat.git
Watch
1
Star
0
Fork
0
Code
Releases
1
Activity
Browse Source
include <foo> -> include "foo"
master
Felix von Leitner
4 years ago
parent
50694f2403
commit
81c4d3787d
22 changed files
with
41 additions
and
41 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
buffer/buffer_close.c
+1
-1
buffer/buffer_getline.c
+1
-1
buffer/buffer_mmapread.c
+1
-1
buffer/errmsg_puts.c
+4
-4
examples/buffer_getline.c
+2
-2
examples/str.c
+1
-1
io/io_debugstring.c
+1
-1
io/io_waituntil2.c
+1
-1
stralloc/stralloc_chomp.c
+1
-1
stralloc/stralloc_chop.c
+1
-1
stralloc/stralloc_zero.c
+1
-1
test/buffer_mmap.c
+2
-2
test/cdbget2.c
+2
-2
test/dnsip.c
+1
-1
test/fmt.c
+3
-3
test/fmt_httpdate.c
+2
-2
test/fmt_human.c
+2
-2
test/fmt_iso8691.c
+2
-2
test/fmt_long.c
+3
-3
test/fmt_longlong.c
+5
-5
test/marshal.c
+3
-3
test/scan_long.c
+ 1
- 1
buffer/buffer_close.c
View File
@ -1,4 +1,4 @@
#
include
<buffer.h
>
#
include
"buffer.h
"
#
include
<unistd.h>
void
buffer_close
(
buffer
*
b
)
{
+ 1
- 1
buffer/buffer_getline.c
View File
@ -1,4 +1,4 @@
#
include
<buffer.h
>
#
include
"buffer.h
"
ssize_t
buffer_getline
(
buffer
*
b
,
char
*
x
,
size_t
len
)
{
return
buffer_get_token
(
b
,
x
,
len
,
"
\n
"
,
1
)
;
+ 1
- 1
buffer/buffer_mmapread.c
View File
@ -1,4 +1,4 @@
#
include
<buffer.h
>
#
include
"buffer.h
"
#
include
<mmap.h>
static
ssize_t
op
(
)
{
+ 1
- 1
buffer/errmsg_puts.c
View File
@ -1,6 +1,6 @@
#
include
"errmsg.h"
#
include
"errmsg_int.h"
#
include
<str.h
>
#
include
"str.h
"
#
ifdef __MINGW32__
+ 4
- 4
examples/buffer_getline.c
View File
@ -1,7 +1,7 @@
#
include
<stralloc.h
>
#
include
<buffer.h
>
#
include
<io.h
>
#
include
<errmsg.h
>
#
include
"stralloc.h
"
#
include
"buffer.h
"
#
include
"io.h
"
#
include
"errmsg.h
"
#
include
<unistd.h>
int
main
(
)
{
+ 2
- 2
examples/str.c
View File
@ -1,5 +1,5 @@
#
include
<str.h
>
#
include
<buffer.h
>
#
include
"str.h
"
#
include
"buffer.h
"
/*
*
The
str_
*
functions
have
a
pretty
similar
functionality
to
the
byte_
*
ones
+ 1
- 1
io/io_debugstring.c
View File
@ -1,6 +1,6 @@
#
include
"io_internal.h"
#
include
<iarray.h>
#
include
<fmt.h
>
#
include
"fmt.h
"
#
include
<sys/time.h>
unsigned
int
io_debugstring
(
int64
s
,
char
*
buf
,
unsigned
int
bufsize
)
{
+ 1
- 1
io/io_waituntil2.c
View File
@ -29,7 +29,7 @@
#
endif
#
ifdef __dietlibc__
#
include
<fmt.h
>
#
include
"fmt.h
"
#
include
<write12.h>
#
endif
+ 1
- 1
stralloc/stralloc_chomp.c
View File
@ -1,4 +1,4 @@
#
include
<stralloc.h
>
#
include
"stralloc.h
"
int
stralloc_chomp
(
stralloc
*
sa
)
{
size_t
max
=
sa
-
>
len
;
+ 1
- 1
stralloc/stralloc_chop.c
View File
@ -1,4 +1,4 @@
#
include
<stralloc.h
>
#
include
"stralloc.h
"
int
stralloc_chop
(
stralloc
*
sa
)
{
if
(
sa
-
>
len
=
=
0
)
return
-
1
;
+ 1
- 1
stralloc/stralloc_zero.c
View File
@ -1,4 +1,4 @@
#
include
<stralloc.h
>
#
include
"stralloc.h
"
void
stralloc_zero
(
stralloc
*
sa
)
{
sa
-
>
len
=
0
;
+ 1
- 1
test/buffer_mmap.c
View File
@ -1,4 +1,4 @@
#
include
<buffer.h
>
#
include
"buffer.h
"
int
main
(
)
{
buffer
input
;
+ 2
- 2
test/cdbget2.c
View File
@ -1,9 +1,9 @@
#
include
<cdb.h>
#
include
<buffer.h
>
#
include
"buffer.h
"
#
include
<unistd.h>
#
include
<fcntl.h>
#
include
<stdlib.h>
#
include
<errmsg.h
>
#
include
"errmsg.h
"
#
ifndef O_BINARY
#
define O_BINARY 0
+ 2
- 2
test/dnsip.c
View File
@ -1,9 +1,9 @@
#
include
<dns.h>
#
include
<ip4.h>
#
include
<buffer.h
>
#
include
"buffer.h
"
#
include
<errno.h>
#
include
<string.h>
#
include
<errmsg.h
>
#
include
"errmsg.h
"
int
main
(
int
argc
,
char
*
argv
[
]
)
{
static
char
seed
[
128
]
;
+ 1
- 1
test/fmt.c
View File
@ -1,4 +1,4 @@
#
include
<fmt.h
>
#
include
"fmt.h
"
#
include
<string.h>
#
include
<assert.h>
+ 3
- 3
test/fmt_httpdate.c
View File
@ -1,7 +1,7 @@
#
include
<time.h>
#
include
<scan.h
>
#
include
<buffer.h
>
#
include
<fmt.h
>
#
include
"scan.h
"
#
include
"buffer.h
"
#
include
"fmt.h
"
int
main
(
)
{
char
buf
[
100
]
;
+ 2
- 2
test/fmt_human.c
View File
@ -1,5 +1,5 @@
#
include
<fmt.h
>
#
include
<buffer.h
>
#
include
"fmt.h
"
#
include
"buffer.h
"
int
main
(
)
{
char
buf
[
1024
]
;
+ 2
- 2
test/fmt_iso8691.c
View File
@ -1,5 +1,5 @@
#
include
<fmt.h
>
#
include
<scan.h
>
#
include
"fmt.h
"
#
include
"scan.h
"
#
include
<assert.h>
#
include
<unistd.h>
+ 2
- 2
test/fmt_long.c
View File
@ -1,5 +1,5 @@
#
include
<fmt.h
>
#
include
<str.h
>
#
include
"fmt.h
"
#
include
"str.h
"
#
include
<assert.h>
int
main
(
)
{
+ 3
- 3
test/fmt_longlong.c
View File
@ -1,7 +1,7 @@
#
include
<fmt.h
>
#
include
<str.h
>
#
include
"fmt.h
"
#
include
"str.h
"
#
include
<assert.h>
#
include
<scan.h
>
#
include
"scan.h
"
#
include
<byte.h>
int
main
(
)
{
+ 5
- 5
test/marshal.c
View File
@ -3,10 +3,10 @@
#
include
<stdio.h>
#
include
<stdlib.h>
#
include
<fmt.h
>
#
include
<stralloc.h
>
#
include
<buffer.h
>
#
include
<scan.h
>
#
include
"fmt.h
"
#
include
"stralloc.h
"
#
include
"buffer.h
"
#
include
"scan.h
"
#
include
<textcode.h>
#
include
<byte.h>
#
include
<uint16.h>
@ -14,7 +14,7 @@
#
include
<uint64.h>
#
include
<openreadclose.h>
#
include
<mmap.h>
#
include
<str.h
>
#
include
"str.h
"
char
buf
[
100
]
;
stralloc
sa
;
+ 3
- 3
test/scan_long.c
View File
@ -1,6 +1,6 @@
#
include
<scan.h
>
#
include
<fmt.h
>
#
include
<buffer.h
>
#
include
"scan.h
"
#
include
"fmt.h
"
#
include
"buffer.h
"
#
include
<assert.h>
int
main
(
)
{
Write
Preview
Loading…
Cancel
Save