| 2851 | }; |
| 2852 | |
| 2853 | SSHORT CVT_decompose(const char* str, USHORT len, Int128* val, ErrorFunction err) |
| 2854 | { |
| 2855 | /************************************** |
| 2856 | * |
| 2857 | * d e c o m p o s e |
| 2858 | * |
| 2859 | ************************************** |
| 2860 | * |
| 2861 | * Functional description |
| 2862 | * Decompose a numeric string in mantissa and exponent, |
| 2863 | * or if it is in hexadecimal notation. |
| 2864 | * |
| 2865 | **************************************/ |
| 2866 | |
| 2867 | |
| 2868 | RetI128 value(val); |
| 2869 | return cvt_decompose(str, len, &value, err); |
| 2870 | } |
| 2871 | |
| 2872 | |
| 2873 | Int128 CVT_hex_to_int128(const char* str, USHORT len) |
no test coverage detected