12 lines
266 B
C
12 lines
266 B
C
|
|
#include <bits/floatn-common.h>
|
|
#include <stdbool.h>
|
|
void zipfs_language_detector(
|
|
char** languages,
|
|
uint64_t languages_count,
|
|
char* input_string,
|
|
bool* successful,
|
|
uint64_t* length_output,
|
|
float** result_buffer_float,
|
|
char*** result
|
|
);
|