From 89094ec20ef408709bf9f211c2f5a75814e363da Mon Sep 17 00:00:00 2001 From: ken Date: Wed, 26 Oct 2016 19:37:02 -0700 Subject: [PATCH] scanner_scanpixels prototype --- src/apc/scanner.c | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/src/apc/scanner.c b/src/apc/scanner.c index a60de18..a999c7b 100644 --- a/src/apc/scanner.c +++ b/src/apc/scanner.c @@ -19,12 +19,15 @@ #include //exit #include //chdir #include //opendir - +/* Libs */ +#include +/* Internal */ #include "parser.tab.h" /* Public */ int scanner_init(void); void scanner_quit(void); int scanner(void); +int scanner_scanpixels(int*,int); /* Private */ #ifndef DL_STACKSIZE #define DL_STACKSIZE 64 @@ -211,3 +214,18 @@ int dredge_current_depth } +/* Scan Pixels + Scans up to 'len' pixels from the current file into 'buf'. + Returns the number of pixels scanned from the file, or -1 on error. +*/ +int scanner_scanpixels +( int* buf, + int x +) +{ int pixels = 0; + //Open the current file if not yet open + //Identify file type + //Verify file contents and header + //Read pixels into buffer + return pixels; +} -- 2.18.0