0
votes
Is using unsigned integer overflow good practice?
Since signed numbers on CPUs can be represented in different ways, 99.999% of all current CPUs use twos-complement notation. Since this is the majority of machines out there, it is difficult to fin …
4
votes
How to create a lightweight C code sandbox?
Since the C standard is much too broad to be allowed, you would need to go the other way around: specify the minimum subset of C which you need, and try to implement that. Even ANSI C is already to …
2
votes
OpenCV: Accessing And Taking The Square Root Of Pixels
Assuming img_ is of type IplImage, and assuming 16 bit unsigned integer data, I would say
unsigned short pixel_value = ((unsigned short *)&(img_->imageData[img_->widthStep …
7
votes
Hide a file or directory using the Windows API from C
You can do it by calling SetFileAttributes and setting the FILE_ATTRIBUTE_HIDDEN flag. See http://msdn.micr …
0
votes
Portable Compare And Swap (atomic operations) C/C++ library?
You could also look at libsync for inspiration from http://www.ioremap.net/node/224 , which is quite new (maybe too new), but it is bein …
