I have a function in a third party libraryvoid MqWrite(const char *msg, const int msg_length)where msg must be aligned to 2 bytes. String literals are aligned to 1 byte by default. I would like all string literals to be aligned to 2 bytes, so I do not nee..
↧