Mac and Linux SDL2 binary snapshots
Edward Rudd
2018-08-19 561f0d614098a95527367cc3f911e476f35643d6
source/include/SDL_test_fuzzer.h
@@ -1,6 +1,6 @@
/*
  Simple DirectMedia Layer
  Copyright (C) 1997-2016 Sam Lantinga <slouken@libsdl.org>
  Copyright (C) 1997-2018 Sam Lantinga <slouken@libsdl.org>
  This software is provided 'as-is', without any express or implied
  warranty.  In no event will the authors be held liable for any damages
@@ -33,8 +33,8 @@
*/
#ifndef _SDL_test_fuzzer_h
#define _SDL_test_fuzzer_h
#ifndef SDL_test_fuzzer_h_
#define SDL_test_fuzzer_h_
#include "begin_code.h"
/* Set up for C function definitions, even when using C++ */
@@ -68,14 +68,14 @@
 *
 * \returns Generated integer
 */
Uint8 SDLTest_RandomUint8();
Uint8 SDLTest_RandomUint8(void);
/**
 * Returns a random Sint8
 *
 * \returns Generated signed integer
 */
Sint8 SDLTest_RandomSint8();
Sint8 SDLTest_RandomSint8(void);
/**
@@ -83,14 +83,14 @@
 *
 * \returns Generated integer
 */
Uint16 SDLTest_RandomUint16();
Uint16 SDLTest_RandomUint16(void);
/**
 * Returns a random Sint16
 *
 * \returns Generated signed integer
 */
Sint16 SDLTest_RandomSint16();
Sint16 SDLTest_RandomSint16(void);
/**
@@ -98,7 +98,7 @@
 *
 * \returns Generated integer
 */
Sint32 SDLTest_RandomSint32();
Sint32 SDLTest_RandomSint32(void);
/**
@@ -106,14 +106,14 @@
 *
 * \returns Generated integer
 */
Uint32 SDLTest_RandomUint32();
Uint32 SDLTest_RandomUint32(void);
/**
 * Returns random Uint64.
 *
 * \returns Generated integer
 */
Uint64 SDLTest_RandomUint64();
Uint64 SDLTest_RandomUint64(void);
/**
@@ -121,29 +121,29 @@
 *
 * \returns Generated signed integer
 */
Sint64 SDLTest_RandomSint64();
Sint64 SDLTest_RandomSint64(void);
/**
 * \returns random float in range [0.0 - 1.0[
 */
float SDLTest_RandomUnitFloat();
float SDLTest_RandomUnitFloat(void);
/**
 * \returns random double in range [0.0 - 1.0[
 */
double SDLTest_RandomUnitDouble();
double SDLTest_RandomUnitDouble(void);
/**
 * \returns random float.
 *
 */
float SDLTest_RandomFloat();
float SDLTest_RandomFloat(void);
/**
 * \returns random double.
 *
 */
double SDLTest_RandomDouble();
double SDLTest_RandomDouble(void);
/**
 * Returns a random boundary value for Uint8 within the given boundaries.
@@ -338,7 +338,7 @@
 *
 * \returns Newly allocated random string; or NULL if length was invalid or string could not be allocated.
 */
char * SDLTest_RandomAsciiString();
char * SDLTest_RandomAsciiString(void);
/**
@@ -371,7 +371,7 @@
/**
 * Returns the invocation count for the fuzzer since last ...FuzzerInit.
 */
int SDLTest_GetFuzzerInvocationCount();
int SDLTest_GetFuzzerInvocationCount(void);
/* Ends C function definitions when using C++ */
#ifdef __cplusplus
@@ -379,6 +379,6 @@
#endif
#include "close_code.h"
#endif /* _SDL_test_fuzzer_h */
#endif /* SDL_test_fuzzer_h_ */
/* vi: set ts=4 sw=4 expandtab: */