mirror of https://github.com/google/oss-fuzz.git
9 lines
283 B
C
9 lines
283 B
C
|
// Copyright 2017 Google Inc. All Rights Reserved.
|
||
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
|
||
|
// A library that does ... stuff.
|
||
|
// Serves as an example of good fuzz testing and OSS-Fuzz integration.
|
||
|
#include <string>
|
||
|
|
||
|
size_t DoStuff(const std::string &str);
|