Tagged Questions
4
votes
8answers
323 views
What is the difference between long long and long int
I know the difference between long and int
But What is the difference between "long long" and "long int"
1
vote
0answers
32 views
Mixing standard and exact-width types
Is it considered as bad style to have a mixture of exact width types (introduced by C99) and standard C types in one prototype definition? E.g.
int some_func (uint32_t flags,
...
1
vote
3answers
58 views
Different struct types between system versions. This is a stumper
I'm working on an iPhone tweak where I need to read from and modify the contents of a struct. However, the struct definition is different between iOS 4.1, iOS 4.2, and iOS 5, and I would like to ...
0
votes
1answer
90 views
Mechanism to call functions with different number and type of parameters?
I have a set of functions to be called
e.g.:
void void_func(); /* id = 0 */
void void_func1(int); /* id = 1 */
void void_func2(int, char *); /* id = 2 */
void ...
0
votes
4answers
3k views
Conversion: uid_t to string, off_t to string
I am currently writing a systems programming homework and in one part i need to get some information of a file in a directory.
for the stat of file, we have ctime() function which converts time_t ...