2014-04-09 13:48:21 +08:00
|
|
|
/*
|
|
|
|
|
* random_seed.h
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2013 Metaparadigm Pte. Ltd.
|
|
|
|
|
* Michael Clark <michael@metaparadigm.com>
|
|
|
|
|
*
|
|
|
|
|
* This library is free software; you can redistribute it and/or modify
|
|
|
|
|
* it under the terms of the MIT license. See COPYING for details.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|
2017-12-06 00:20:59 -05:00
|
|
|
/**
|
|
|
|
|
* @file
|
|
|
|
|
* @brief Do not use, json-c internal, may be changed or removed at any time.
|
|
|
|
|
*/
|
2014-04-09 13:48:21 +08:00
|
|
|
#ifndef seed_h
|
|
|
|
|
#define seed_h
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2018-12-18 11:30:57 -06:00
|
|
|
extern int json_c_get_random_seed(void);
|
2014-04-09 13:48:21 +08:00
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif
|