Юрій Ващинський
Юрій Ващинський
I decided to ask chatGPT about how to store and access shared memory in C. And it gave an answer. [Read chat](https://chat.openai.com/share/76b45ae6-c6ec-4d30-8efc-bf5e61f54a26)
C seems also has stdatomic.h lib with functions: atomic_int atomic_flag atomic_store atomic_load atomic_add atomic_sub
i may send entire code ```c #include #include #include #include #ifdef _WIN32 #define EXPORT __declspec(dllexport) #else #define EXPORT __attribute__((visibility("default"))) #endif /**e * @brief If the size we allocated differs too...
I have currently the following implementaiton. fromCharCode function works if use wprintf (since it converts into utf-16 characters). But it still incorrectly outputs utf-16 specific characters (outputs normally only regular...
Thank you a lot, i will fix that