summaryrefslogtreecommitdiff
path: root/apps/rbcodecplatform.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/rbcodecplatform.h')
-rw-r--r--apps/rbcodecplatform.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/apps/rbcodecplatform.h b/apps/rbcodecplatform.h
new file mode 100644
index 0000000000..1dc72ac4e0
--- /dev/null
+++ b/apps/rbcodecplatform.h
@@ -0,0 +1,35 @@
1#ifndef RBCODECPLATFORM_H_INCLUDED
2#define RBCODECPLATFORM_H_INCLUDED
3#if 0
4/* assert */
5#include <assert.h>
6
7/* isdigit, islower, isprint, isspace, toupper */
8#include <ctype.h>
9
10/* {UCHAR,USHRT,UINT,ULONG,SCHAR,SHRT,INT,LONG}_{MIN,MAX} */
11#include <limits.h>
12
13/* memchr, memcmp, memcpy, memmove, memset, strcasecmp, strcat, strchr, strcmp,
14 * strcpy, strlen, strncmp, strrchr, strlcpy */
15#include <string.h>
16#include "string-extra.h"
17
18/* snprintf */
19#include <stdio.h>
20#endif
21/* abs, atoi, labs, rand */
22#include <stdlib.h>
23#if 0
24/* debugf */
25#include "debug.h"
26
27/* logf */
28#include "logf.h"
29
30/* clip_sample_16 */
31#include "dsp-util.h"
32#define HAVE_CLIP_SAMPLE_16
33#endif
34#endif
35