random_seed.h 502 B

1234567891011121314151617181920212223242526272829
  1. /*
  2. * random_seed.h
  3. *
  4. * Copyright (c) 2013 Metaparadigm Pte. Ltd.
  5. * Michael Clark <michael@metaparadigm.com>
  6. *
  7. * This library is free software; you can redistribute it and/or modify
  8. * it under the terms of the MIT license. See COPYING for details.
  9. *
  10. */
  11. /**
  12. * @file
  13. * @brief Do not use, json-c internal, may be changed or removed at any time.
  14. */
  15. #ifndef seed_h
  16. #define seed_h
  17. #ifdef __cplusplus
  18. extern "C" {
  19. #endif
  20. extern int json_c_get_random_seed();
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24. #endif