summaryrefslogtreecommitdiffstats
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 @@
+#ifndef RBCODECPLATFORM_H_INCLUDED
+#define RBCODECPLATFORM_H_INCLUDED
+#if 0
+/* assert */
+#include <assert.h>
+
+/* isdigit, islower, isprint, isspace, toupper */
+#include <ctype.h>
+
+/* {UCHAR,USHRT,UINT,ULONG,SCHAR,SHRT,INT,LONG}_{MIN,MAX} */
+#include <limits.h>
+
+/* memchr, memcmp, memcpy, memmove, memset, strcasecmp, strcat, strchr, strcmp,
+ * strcpy, strlen, strncmp, strrchr, strlcpy */
+#include <string.h>
+#include "string-extra.h"
+
+/* snprintf */
+#include <stdio.h>
+#endif
+/* abs, atoi, labs, rand */
+#include <stdlib.h>
+#if 0
+/* debugf */
+#include "debug.h"
+
+/* logf */
+#include "logf.h"
+
+/* clip_sample_16 */
+#include "dsp-util.h"
+#define HAVE_CLIP_SAMPLE_16
+#endif
+#endif
+