From 6abe58ce8ca67e57b942404d90b22c4eadeefe3e Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Sat, 10 Mar 2012 21:09:26 -0600 Subject: [PATCH] Update: add buffer_too_small and buffer_too_large error codes This could come in handy and is more generic than string_too_small and string_too_large. --- level_0/f_errors/c/errors.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/level_0/f_errors/c/errors.h b/level_0/f_errors/c/errors.h index 16f2d6b..0d3a593 100644 --- a/level_0/f_errors/c/errors.h +++ b/level_0/f_errors/c/errors.h @@ -132,6 +132,8 @@ enum { f_error_on_eof, f_error_on_eos, f_error_on_stop, + f_buffer_too_small, + f_buffer_too_large, f_string_too_small, f_string_too_large, f_unterminated_nest, -- 1.8.3.1