Click here to Skip to main content
15,881,027 members
Articles / Security

CR-XAM

Rate me:
Please Sign up or sign in to vote.
4.00/5 (1 vote)
22 Nov 2012Public Domain9 min read 16.6K   8  
A Simple But Surprisingly Effective Random Number Generator


#ifndef H__STD_TYPES
#define H__STD_TYPES

typedef unsigned char byte;
typedef unsigned int uint;

typedef signed short int int16;
typedef unsigned short int uint16;
typedef signed long int int32;
typedef unsigned long int uint32;
typedef signed long long int int64;
typedef unsigned long long int uint64;

#endif

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under A Public Domain dedication


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions