| 123456789101112131415161718192021222324 |
- /************************************************************************
- * AUTHOR: NiuJiuRu
- * FILENAME: swrand.h
- * DESCRIPTION: 随机数产生函数
- * NOTE:
- * HISTORY:
- * 1, [2010-08-23] created by NiuJiuRu
- ************************************************************************/
- #ifndef __SWRAND_H__
- #define __SWRAND_H__
- #ifdef __cplusplus
- extern "C"
- {
- #endif
- /* 产生一个特定范围内的随机数, 并返回结果 */
- unsigned int xrand32(unsigned int range);
- #ifdef __cplusplus
- }
- #endif
- #endif /* __SWRAND_H__ */
|