iroundf A few minutes ago I wrote a rounding function for myself in C.
iroundf A few minutes ago I wrote a rounding function for myself in C. Probably not the best implementation, but it works all right. If you’re interested, check it out (I’ve put some sample values in the comments):
int iroundf(float value){ if(value > 0.0) { int …