summaryrefslogtreecommitdiff
path: root/ext/json/fbuffer/fbuffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'ext/json/fbuffer/fbuffer.h')
-rw-r--r--ext/json/fbuffer/fbuffer.h8
1 files changed, 0 insertions, 8 deletions
diff --git a/ext/json/fbuffer/fbuffer.h b/ext/json/fbuffer/fbuffer.h
index a03968a4fc..47e0c07004 100644
--- a/ext/json/fbuffer/fbuffer.h
+++ b/ext/json/fbuffer/fbuffer.h
@@ -35,14 +35,10 @@ static FBuffer *fbuffer_alloc(unsigned long initial_length);
static void fbuffer_free(FBuffer *fb);
static void fbuffer_clear(FBuffer *fb);
static void fbuffer_append(FBuffer *fb, const char *newstr, unsigned long len);
-#if 0
static void fbuffer_append_long(FBuffer *fb, long number);
-#endif
static void fbuffer_append_char(FBuffer *fb, char newchr);
-#if 0
static FBuffer *fbuffer_dup(FBuffer *fb);
static VALUE fbuffer_to_s(FBuffer *fb);
-#endif
static FBuffer *fbuffer_alloc(unsigned long initial_length)
{
@@ -92,7 +88,6 @@ static void fbuffer_append(FBuffer *fb, const char *newstr, unsigned long len)
}
}
-#if 0
static void fbuffer_append_str(FBuffer *fb, VALUE str)
{
const char *newstr = StringValuePtr(str);
@@ -102,7 +97,6 @@ static void fbuffer_append_str(FBuffer *fb, VALUE str)
RB_GC_GUARD(str);
}
-#endif
static void fbuffer_append_char(FBuffer *fb, char newchr)
{
@@ -111,7 +105,6 @@ static void fbuffer_append_char(FBuffer *fb, char newchr)
fb->len++;
}
-#if 0
static void freverse(char *start, char *end)
{
char c;
@@ -162,4 +155,3 @@ static VALUE fbuffer_to_s(FBuffer *fb)
return result;
}
#endif
-#endif