Convert strtold to Rust

This commit is contained in:
Wildan M
2025-12-25 16:11:36 +07:00
parent d82db81ae2
commit 08485648f6
6 changed files with 10 additions and 42 deletions
-5
View File
@@ -1,5 +0,0 @@
double strtod(const char *nptr, char **endptr);
long double strtold(const char *nptr, char **endptr) {
return (long double)strtod(nptr, endptr);
}