4
votes
4answers
396 views
C XML library for Embedded Systems
I'm working on a project for an embedded system that's using XML for getting data into and out of the system. I don't want the XML handling to devolve into a bunch of bits that build XML strings us …
8
votes
Unit Testing C Code
I'm currently using the CuTest unit test framework:
http://cutest.sourceforge.net/
It's ideal for embedded systems as it' …
0
votes
Make VS compiler catch signed/unsigned assignments?
@quamrana:
There must be something beyond the /Wall option to enable warning 4365:
C:\Temp>cl /Wall /c foo.c
Microsoft (R) 32-bit C/C+ …
1
vote
How to guarantee 64-bit writes are atomic?
If you want to do something like this for interthread or interprocess communication, then you need to have more than just an atomic read/write guarantee. In your example, it appears that you want …
14
votes
Where do I find the current {X} standard?
As of today (17 September 2008), the best locations (in terms of price) for C/C++ standards documents (all in PDF form) are:
C++98/C++03 - INCITS/ISO/IEC 14882-2003 (The C++ Standa …
3
votes
Do I have a gcc optimization bug or a C code problem?
In the C99 standard, this is covered by the following rule in 6.5-7:
An object shall have its stored value accessed only by an lvalue expression that has one of
the followi …
0
votes
Are POD types always aligned?
Yes, all types are always aligned to at least their alignment requirements.
How could it be otherwise?
But note that the sizeof() a type is not the same as it's alignment.
Y …
0
votes
C compiler for Windows?
There have been a few comments pointing out that C is not C++. While that's true, also true that any C++ compiler will also compile C - usually the compiler mode will be automatically selected bas …
5
votes
How universally is C99 supported ?
Someone mentioned the Intel compiler has C99 support. There is also the Comeau C/C++ compiler which fully supports C99. These are the …
18
votes
C/C++ Structure offset
How about the standard offsetof() macro (in stddef.h)?
Edit: for people who might not have the offsetof() macro available for some reason, you can get the effect using something like:
…
2
votes
Is Windows’ rand_s thread-safe?
Visual Studio comes with the source to the runtime library. While some of it can be rather painful to wade through, rand_s() is pretty simple.
All rand_s() does is call SystemFunction036() …
4
votes
C/C++: How to obtain the full path of current directory?
No, there's no standard way. I believe that the C/C++ standards don't even consider the existence of directories (or other file system organizations).
On Windows the GetModuleFileNa …
2
votes
How to redirect data to stdin within a single executable?
You should be able to use freopen() to point stdin to an arbitrary file.
…
5
votes
Why does a bit field of type “unsigned short” pack into a struct differently to an “unsigned int:16”
Because the compiler is packing your bitfield into a 32-bit int, not a 16-bit entity.
In general you should avoid bitfields and use other manifest constants (enums or whatever) with explici …
-2
votes
Detecting CPU architecture compile-time
There's nothing standard. Brian Hook documented a bunch of these in his "Portable Open Source Harness", and even tries to make them into something coherent and usable (ymmv regarding that). See th …
