Rev 4708 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4708 | Rev 4756 | ||
|---|---|---|---|
| Line 46... | Line 46... | ||
| 46 | #include "../modules.h" |
46 | #include "../modules.h" |
| 47 | 47 | ||
| 48 | #include "measured_strings.h" |
48 | #include "measured_strings.h" |
| 49 | 49 | ||
| 50 | /** Computes the lengths of the measured strings in the given array. |
50 | /** Computes the lengths of the measured strings in the given array. |
| 51 | * @param strings The measured strings array to be processed. Input parameter. |
51 | * @param[in] strings The measured strings array to be processed. |
| 52 | * @param count The measured strings array size. Input parameter. |
52 | * @param[in] count The measured strings array size. |
| 53 | * @returns The computed sizes array. |
53 | * @returns The computed sizes array. |
| 54 | * @returns NULL if there is not enough memory left. |
54 | * @returns NULL if there is not enough memory left. |
| 55 | */ |
55 | */ |
| 56 | size_t * prepare_lengths( const measured_string_ref strings, size_t count ); |
56 | size_t * prepare_lengths( const measured_string_ref strings, size_t count ); |
| 57 | 57 | ||