Skip to content

Instantly share code, notes, and snippets.

View ggtwlb0314's full-sized avatar

Libo Wang ggtwlb0314

  • Shanghai JiaoTong University
  • Shanghai
View GitHub Profile
@ggtwlb0314
ggtwlb0314 / ffr.c
Created March 20, 2014 14:23 — forked from cloudwu/ffr.c
#include <stdint.h>
#include <stdlib.h>
// assert(RAND_MAX >= 0x7fff)
float
random_0_to_1() {
union {
uint32_t d;
float f;
} u;