{,YourFile.c,} .99 (where 99 is the line number) into the breakpoint window box input field. Note that name mangling is not an issue in C mode, or with extern "C"'d functions, so you can use those names directly, if you want, in addition to the above choices.
-A --no_microsoft -D_WCHAR_T_DEFINED -D_MSC_VER -D__cdecl=As well, see below about changing <assert.h>. We're curious on your feedback on how successful these settings are for your projects if you need strict mode under Windows.
como xyz.c Compile and link como -c xyz.c Compile only, results in xyz.obj link xyz.obj Don't do this, this is an error como xyz.obj Compile xyz.obj into aout.exeDo not confuse this with the --c (note two dashes not one) option which specificies C90 mode. So if you want to compile and link a C90 source you'd write:
como -c --c c.c
#ifdef __COMO__ #define Int64ShllMod32(v, s) ((DWORDLONG)(v) << (s)) #define Int64ShraMod32(v, s) ((LONGLONG)(v) >> (s)) #define Int64ShrlMod32(v, s) ((DWORDLONG)(v) >> (s)) #else /* The original code block here, from the pragma to the pragma */ #endif
_CRTIMP void __cdecl _assert(const char *, const char *, unsigned);