antirez / sds

Simple Dynamic Strings library for C
BSD 2-Clause "Simplified" License
4.89k stars 473 forks source link

Add MSVC support. #146

Open szanni opened 1 year ago

szanni commented 1 year ago

Some poor souls like me need to support cross platform builds. This patch adds support for MSVC and leaves everything else intact.

MSVC does not support __attribute__ ((__packed__)). Add support via __pragma(pack(push, 1)) when compiling with MSVC.