mirror of
https://github.com/albertan017/LLM4Decompile.git
synced 2026-06-17 01:55:50 +00:00
6 lines
111 B
C
6 lines
111 B
C
#include <stdio.h>
|
|
#include <math.h>
|
|
|
|
float truncate_number(float number) {
|
|
return number - (int)number;
|
|
}
|