[FL-3927] FuriThread stdin (#3979)

* feat: FuriThread stdin
* ci: fix f18
* feat: stdio callback context

Co-authored-by: Georgii Surkov <37121527+gsurkov@users.noreply.github.com>
Co-authored-by: あく <alleteam@gmail.com>
This commit is contained in:
Anna Antonenko
2024-12-19 00:38:43 +04:00
committed by GitHub
parent 9917579619
commit 8d078e4b8c
13 changed files with 346 additions and 38 deletions
+4 -4
View File
@@ -129,12 +129,12 @@ void furi_string_swap(FuriString* string_1, FuriString* string_2);
/** Move string_2 content to string_1.
*
* Set the string to the other one, and destroy the other one.
* Copy data from one string to another and destroy the source.
*
* @param string_1 The FuriString instance 1
* @param string_2 The FuriString instance 2
* @param destination The destination FuriString
* @param source The source FuriString
*/
void furi_string_move(FuriString* string_1, FuriString* string_2);
void furi_string_move(FuriString* destination, FuriString* source);
/** Compute a hash for the string.
*