winpty/shared
Ryan Prichard 41e7c31387 MSVC compatibility: Deal with snprintf and vsnprintf.
* When building with MSVC, there is no snprintf function, but there are
   _snprintf, vsnprintf, and _vsnprintf functions (as well as many
   variations on these).  The MSVC _snprintf is not the same as C99's
   snprintf, and in particular, it does not guarantee that the buffer is
   NUL-terminated, whereas C99 does guarantee this.  I want the C99
   behavior, so add a c99_[v]snprintf functions in shared/c99_snprintf.h
   that provide C99 behavior.

 * Details:
   http://stackoverflow.com/questions/2915672/snprintf-and-visual-studio-2010
2012-12-20 04:07:56 -08:00
..
AgentMsg.h Rename Shared to shared and Misc to misc. 2012-04-01 02:13:21 -07:00
Buffer.h Rename Shared to shared and Misc to misc. 2012-04-01 02:13:21 -07:00
c99_snprintf.h MSVC compatibility: Deal with snprintf and vsnprintf. 2012-12-20 04:07:56 -08:00
DebugClient.cc MSVC compatibility: Deal with snprintf and vsnprintf. 2012-12-20 04:07:56 -08:00
DebugClient.h Rename Shared to shared and Misc to misc. 2012-04-01 02:13:21 -07:00