9 lines
147 B
C
9 lines
147 B
C
#ifndef BUFFER_HELPER_H
|
|
#define BUFFER_HELPER_H
|
|
|
|
#include <string.h>
|
|
|
|
size_t get_buffer_size(const char **components, int num_components);
|
|
|
|
#endif
|