Implement read file and extract tokens.

This commit is contained in:
2023-09-21 07:47:19 +02:00
parent 14254b7db2
commit 1b517751f9
3 changed files with 120 additions and 0 deletions

View File

@@ -2,5 +2,17 @@
#define TOKENIZER_H
#include <string.h>
#include <stdio.h>
#include <stdlib.h>
/**
* @name extractTokens
* @return int
* @brief Extract only allowed characters from buffer;
*
* @param char* buffer: extractTokens_buffer
* @param char* tokens: extractTokens_tokens
*/
int extractTokens (char* buffer, char* tokens);
#endif//TOKENIZER_H