Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Xiph.Org
flac
Commits
843f1bff
Commit
843f1bff
authored
Nov 16, 2001
by
Josh Coalson
Browse files
#include string.h
parent
2e1d1573
Changes
3
Hide whitespace changes
Inline
Side-by-side
src/libFLAC/seekable_stream_decoder.c
View file @
843f1bff
...
...
@@ -19,6 +19,7 @@
#include <stdio.h>
#include <stdlib.h>
/* for malloc() */
#include <string.h>
/* for memcpy()/memcmp() */
#include "FLAC/assert.h"
#include "protected/seekable_stream_decoder.h"
#include "protected/stream_decoder.h"
...
...
src/test_unit/bitbuffer.c
View file @
843f1bff
...
...
@@ -17,6 +17,7 @@
*/
#include "private/bitbuffer.h"
/* from the libFLAC private include area */
#include <string.h>
/* for memcmp() */
static
FLAC__bool
dummy_read_callback
(
FLAC__byte
buffer
[],
unsigned
*
bytes
,
void
*
client_data
)
{
...
...
src/test_unit/main.c
View file @
843f1bff
...
...
@@ -20,6 +20,8 @@
int
main
(
int
argc
,
char
*
argv
[])
{
(
void
)
argc
,
(
void
)
argv
;
if
(
0
!=
test_bitbuffer
())
return
1
;
return
0
;
...
...
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