Dokumentace

This commit is contained in:
Pavel Brychta 2021-08-24 07:35:55 +02:00
parent 37379e52a7
commit ed8d1e5a03

View File

@ -2,8 +2,18 @@
#define _ENCSTRING_HPP_ #define _ENCSTRING_HPP_
#include <Arduino.h> #include <Arduino.h>
/**
* @brief Zakodovani retezce.
*
* @param str Reference na retezec.
*/
void strEncode(String &str); void strEncode(String &str);
/**
* @brief Dekodovani retezce.
*
* @param str Reference na retezec.
*/
void strDecode(String &str); void strDecode(String &str);
#endif #endif