Skip to content

Instantly share code, notes, and snippets.

@kaneshin
Created May 27, 2014 16:44
Show Gist options
  • Save kaneshin/d31fd16e7d9d48a43a28 to your computer and use it in GitHub Desktop.
Save kaneshin/d31fd16e7d9d48a43a28 to your computer and use it in GitHub Desktop.
static inline int
ud_floor(const double x)
{
return (x > 0 ? (int)x : (int)x - 1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment