The stdint tag has no wiki summary.
17
votes
4answers
555 views
What is this mysterious macro plus sign in stdint.h?
Please see my code:
#include <stdint.h>
int main(int argc, char *argv[])
{
unsigned char s = 0xffU;
char ch = 0xff;
int val = 78;
((int8_t) + (78)); /*what does this mean*/
INT8_C(val); ...
6
votes
2answers
1k views
Where is ptrdiff_t defined in C?
Where is ptrdiff_t defined in C? If non-trivial, how can I make this type visible from GCC on Linux?
5
votes
2answers
665 views
Printf with typedef integers, especially 64bit
Consider this code:
typedef int64_t Blkno;
#define BLKNO_FMT "%lld"
printf(BLKNO_FMT, (Blkno)some_blkno);
This works well and fine on x86. On x64, int64_t is actually a long, rather than a long ...
4
votes
2answers
299 views
what's the equivalent of atoi or strtoul for uint32_t and other stdint types?
i'm looking for the standard functions to convert a string to an stdint.h integer, like
int i = atoi("123");
unsigned long ul = strtoul("123", NULL, 10);
uint32_t n = mysteryfunction("123"); // ...
2
votes
4answers
113 views
Extra bytes when declaring a member of a struct as uint32_t
I have a problem when using the uint32_t type from the stdint.h library. If I run the following code (on Ubuntu linux 11.10 x86_64, g++ version 4.6.1):
#include "stdint.h"
#include <iostream>
...
2
votes
1answer
115 views
namespace over a #include header file question
I porting code from a windows machine to a Mac. I am using OS X 10.6 with Xcode 3.2.5
I have a header file called api.h which has the following code:
namespace ocip {
#include ...
2
votes
3answers
2k views
Problems installing RMagick-gem in Rails
I've been plowing through tutorials all day trying to install RMagick, and have gotten pretty far now I reckon, but have stumbled apon an error that I really don't know how to solve, nor get any ...
2
votes
9answers
446 views
Fastest integer type for common architectures
The stdint.h header lacks an int_fastest_t and uint_fastest_t to correspond with the {,u}int_fastX_t types. For instances where the width of the integer type does not matter, how does one pick the ...
1
vote
2answers
110 views
bit fields vs. stdint definitions
So I am programming in C++, and as far as I can tell there is no C++ equivalent to stdint.h. Which is no problem, seeing as you can just grab a copy of stdint and include it... but my question is ...
1
vote
2answers
212 views
difference between stdint.h and inttypes.h
What is the difference between stdint.h and inttypes.h?
If none of them is used, uint64_t is not recognized but with either of them it is a defined type.
1
vote
4answers
295 views
Compile time checking existance of stdint.h
I'm working with legacy embedded C code which defines the types uint8_t, uint16_t and uint32_t in a header file using the typedef keyword.
For discussion, let us say the file typedefs.h contains ...
0
votes
4answers
74 views
How to print a int64_t type in C
C99 standard has integer types with bytes size like int64_t. I am using the following code:
#include <stdio.h>
#include <stdint.h>
int64_t my_int = 999999999999999999;
printf("This is ...
0
votes
1answer
688 views
Where is stlib.h / stdint.h in Visual Studio 2010?
I was googling a bit and heard that although stdint.h was not shipped with old versions of Visual Studio, it should be there in Visual Studio 2010.
However, I have this project that's supposed to use ...
-1
votes
1answer
90 views
Why does this cause an overflow?
It's my understanding that uint64_t defined by C99 (stdint.h) is defined to be 8 bytes (= 64 bits) of length, thus allowing for a maximum value of 2^64 - 1. However, when I try the following code ...