Home | History | Annotate | Download | only in json-c
      1 /*
      2  * random_seed.h
      3  *
      4  * Copyright (c) 2013 Metaparadigm Pte. Ltd.
      5  * Michael Clark <michael (at) 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 #ifndef seed_h
     13 #define seed_h
     14 
     15 #ifdef __cplusplus
     16 extern "C" {
     17 #endif
     18 
     19 extern int json_c_get_random_seed();
     20 
     21 #ifdef __cplusplus
     22 }
     23 #endif
     24 
     25 #endif
     26