File style cleanup for the SDL 2.0 release

This commit is contained in:
Sam Lantinga
2013-05-18 14:17:52 -07:00
parent 3beb70c4bc
commit 0d9b661db8
376 changed files with 17562 additions and 17773 deletions

View File

@@ -1,7 +1,7 @@
/*
* common.c
* written by Holmes Futrell
* use however you want
* common.c
* written by Holmes Futrell
* use however you want
*/
#include "common.h"
@@ -9,8 +9,8 @@
#include <stdlib.h>
/*
Produces a random int x, min <= x <= max
following a uniform distribution
Produces a random int x, min <= x <= max
following a uniform distribution
*/
int
randomInt(int min, int max)
@@ -19,8 +19,8 @@ randomInt(int min, int max)
}
/*
Produces a random float x, min <= x <= max
following a uniform distribution
Produces a random float x, min <= x <= max
following a uniform distribution
*/
float
randomFloat(float min, float max)