Adding Crunch at r319.

This commit is contained in:
Ben Vanik
2014-01-20 23:02:34 -08:00
parent c660b5e4d1
commit 1f3e06e60c
215 changed files with 99367 additions and 0 deletions

20
third_party/crunch/crunch/corpus_gen.h vendored Normal file
View File

@@ -0,0 +1,20 @@
// File: corpus_gen.h
// See Copyright Notice and license at the end of inc/crnlib.h
#pragma once
#include "crn_command_line_params.h"
#include "crn_image.h"
namespace crnlib
{
class corpus_gen
{
public:
corpus_gen();
bool generate(const char* pCmd_line);
private:
void sort_blocks(image_u8& img);
};
} // namespace crnlib