This tag is for questions regarding the International Standard ISO 9899:1999, aka "C99", with technical corrigenda, and for questions about code written in C99 (as opposed to K&R C, C89 or later C Standard revisions like the 2011 revision C11).

learn more… | top users | synonyms

1
vote
2answers
96 views

Can anybody please explain the behavour of C preprocessor in following examples?

I am implementing a C macro preprocessor (C99)... I am surprised by the following behaviour.... Ex1: #define PASTE(x) X_##x #define EXPAND(x) PASTE(x) #define TABSIZE 1024 #define BUFSIZE TABSIZE ...
17
votes
3answers
311 views

What is the equivalent Haskell type for C99 bool when using FFI?

I have a library which uses C99 bool data type and I would like to call it via FFI. What is the corresponding type for C99 bool in Haskell? In Foreign.C.types there are CInt, CShort etc, but no ...
-2
votes
2answers
54 views

C99 Segmentation Overflow strlen, not consistent

I have been searching for answers to this problem for a while, and I cannot seem to find a solution. When the arguments are of different lengths, there is no error. When they are of the same length, ...
19
votes
2answers
217 views

Catch incorrect usage of c bool

In a C project (OpenVPN is the project in question, commit 4029971240b6274b9b30e76ff74c7f689d7d9750) we had a emulation of bool typedef int bool; #define false 0 #define true 1 and now switch to ...
2
votes
2answers
52 views

How much does the GCC compilers keep to the C/C++ standards?

For example, the C programming language with C99 standard supports hexadecimal floating-point literals but the C++ with C++03 standard doesn't. I tested it, GCC recognized the hexadecimal floating ...
0
votes
1answer
57 views

How to handle a warning from the clang compiler?

I'd like my program to compile with clang with no warnings. The function appears to work when compiled but why? How can I handle the warning? $ clang cpu-disk-info.c cpu-disk-info.c:108:17: warning: ...
1
vote
3answers
134 views

NULL function pointers

What is the behavior of calling a null function pointer? void (*pFunc)(void) = NULL; pFunc(); Why is it advisable to initialize yet unused function pointers to NULL?
0
votes
1answer
37 views

c99 problems with pointers and localtime_r

I am assigning one variable to hold the current time: struct tm *cur = malloc (sizeof (cur)); time_t t = time (NULL); localtime_r (&t, cur); I then print the year. It is correct. Next I enter a ...
1
vote
3answers
85 views

How to determine return type, arguments, function name from C99 function declarations

I'm looking for the simpliest way, how to determine return type, arguments and function name from c header file written under C99. it's my school project, which have to be written in Perl without any ...
2
votes
3answers
125 views

why we use FILE * instead of FILE for I/O

Today I am learning things about Standard I/O of C. When I opened the stdio.h file found that: typedef struct _iobuf FILE; and when check the defination of struct _iobuf found that: struct _iobuf ...
0
votes
3answers
90 views

Efficiently calculate leap days

Im using the following function to calculate the number of leap days between two years: static int CountLeapDays(int startYear, int endYear) { int Days = 0; while (true) { if ...
0
votes
1answer
115 views

how to make a structure point to itself without valgrind complaining

#include<stdio.h> #include<stdlib.h> #include<string.h> #include<assert.h> struct Person{ char *name; char sex; int age; struct Person *ancestor; ...
3
votes
2answers
175 views

Integer types in C

Suppose I wish to write a C program (C99 or C2011) that I want to be completely portable and not tied to a particular architecture. It seems that I would then want to make a clean break from the old ...
2
votes
1answer
96 views

C struct initialization with C99 - Is mixing named and unnamed members valid?

Given the following: struct example_struct { char c; int i; }; Is any the following initializer syntax valid in C99? Syntax example #1 struct example_struct example = { 'a', .i = 1}; Syntax ...
1
vote
2answers
57 views

Can constant objects with static storage duration and equal, constant initializers be coalesced?

Consider two objects with static storage duration and equal, constant initializers: static const int a = 50; static const int b = 50; Is it valid for a compiler to combine these such that &a == ...
0
votes
1answer
51 views

Correct way to write an in-place floating point type promotion loop?

I have a routine that promotes an array of single precision data to double precision in place using that the array is appropriately sized to handle the extra bytes: void dpromote(const int n, double ...
0
votes
1answer
98 views

Efficiently convert unsigned to signed

I always subtract by 32768 when I have an unsigned short that I want to convert to a signed one. Is that the fastest way to do it, or are there faster ways?
1
vote
1answer
52 views

Is C99 fesetround()/fegetround() state per-thread or per-process?

C and POSIX references I found online don't specify the thread-safety of C99's fesetround(). Even GNU documentation doesn't[1]. Is the state per-thread or per-process? [1] ...
0
votes
3answers
108 views

What is the default C mode for the current gcc (especially on Ubuntu)?

When I ask to see the current version of cc I get this. $ cc --version cc (Ubuntu/Linaro 4.7.2-2ubuntu1) 4.7.2 Copyright (C) 2012 Free Software Foundation, Inc. This is free software; see the source ...
1
vote
2answers
89 views

c99 Mode for Single Files in for Code::Blocks

I am having problems compiling some code I am working on. I have recently decided to learn C so I can get a better understanding of low level languages. I tried to make a for loop, but it returns the ...
7
votes
5answers
255 views

Is it possible to instruct C to not zero-initialize global arrays?

I'm writing an embedded application and almost all of my RAM is used by global byte-arrays. When my firmware boots it starts by overwriting the whole BSS section in RAM with zeroes, which is ...
3
votes
3answers
197 views

Efficiently converting 16-bits short to 8-bits char

I'm working on a Cortex M0 cpu, which doesn't have hardware division, so every time I divide something, the GCC libary function is used. Now one of the division I do the most is dividing by 256, to ...
4
votes
3answers
176 views

Using-block in C

When having arrays of structures I often miss the With-block approach I got used to in VB6 (similar to the Using-block in C#). For example, many of my code looks now like: ...
6
votes
1answer
108 views

Is there a GCC keyword to allow structure-reordering?

I know why GCC doesn't re-order members of a structure by default, but I seldom write code that relies on the order of the structure, so is there some way I can flag my structures to be automaticly ...
5
votes
4answers
132 views

Distinguish between string and byte array?

I have a lot of functions that expect a string as argument, for which I use char*, but all my functions that expect a byte-array, also use char*. The problem is that I can easily make the mistake of ...
4
votes
2answers
84 views

Pointer in structure memory allocation in initialization (c99)

Lets assume that we've got a type: typedef struct __BUFF_T__ { u_int8_t *buf; u_int32_t size; }buff_t; Is it correct allocating memory next way in c99? buff_t a = {.size = 20,.buf = ...
9
votes
5answers
174 views

Are global variables refreshed between function calls?

Im writing embedded firmware, and find it sometimes hard to decide when I need volatile or not. When I have a function that waits for some boolean flag to be changed by an interrupt, it's obvious ...
3
votes
2answers
84 views

Ensure enum name uniqueness in C without adding long prefix

I find myself always appending the name of the enum, to its values, because else I often have conflicts with other enums, for example: typedef enum { A_ONE, A_TWO, } A; typedef enum { ...
7
votes
2answers
244 views

Variable length array in the middle of struct - why this C code is valid for gcc

There is some strange code which is treated as Valid C (C99, C11) by gcc 4.6: $ cat a.c int main(int argc,char**argv) { struct args_t{ int a; int params[argc]; // << Wat? ...
0
votes
5answers
137 views

Usage of the const keyword

I know that using the const keyword on function arguments provides better performance, but I always forget to add it. Is the compiler (GCC in this case) smart enough to notice that the variabele never ...
4
votes
4answers
84 views

Usage of the extern keyword

When I declare function prototypes in my header-files, I can reach those everywhere in my program, even though I never use the 'extern' keyword. Are they only important for static libraries, or when ...
1
vote
6answers
154 views

Does GCC cache loop variables?

When I have a loop like: for (int i = 0; i < SlowVariable; i++) { // } I know that in VB6 the SlowVariable is accessed every iteration of the loop, making the following much more efficient: ...
0
votes
4answers
75 views

Pointer or Value

When I call: write_byte((uint8_t*)0); It passes a null-pointer. How can I modify it to pass a pointer to the literal value 0?
4
votes
5answers
116 views

Pointer from integer without a cast

When I call a function that expects a pointer, and I pass in a value, I get this warning, and I like that. But when the value happens to be a literal '0', I don't get the warning. I think this is ...
0
votes
5answers
74 views

When are values implicitly converted to pointers?

I have many functions like: void write(char* param, int len) { // } And I notice that I almost never use the & operator for arguments. When I pass an array: char in[20]; write(in, 20); I ...
1
vote
1answer
96 views

Switching between packed/unpacked structs

I have a lot of configuration data in EEPROM (4KB) which I read out in packed structures. Throughout my firmware I need to read/change these values very frequently, and performance of packed ...
3
votes
3answers
114 views

Prevent nested calls

I have a function to disable interrupts, but the problem is that if I disable them and I call a function which also disables/enables them, they get re-enabled too early. Is the following logic enough ...
0
votes
1answer
72 views

C - How to actually use a long long datatype with the ctime function

I tried asking this before but I forgot to include a question (since I just joined the site), so I didn't actually have my problem solved, people just told me why the second bit of code was wrong ...
3
votes
1answer
118 views

Supply C99 complex arguments from C++ [duplicate]

Possible Duplicate: Passing a C++ complex array to C If a third party C library expects an array of C99 complex numbers as an argument, what is the easiest way to call it from C++, where my ...
2
votes
1answer
70 views

Is there any way for a compound literal to have variable length in c99?

I know that arrays with lengths determined at runtime are possible by declaring the array normally: char buf[len]; and I know that I can declare an array as a compound litral and assign it to a ...
2
votes
1answer
240 views

Passing a multidimensional variable length array to a function

There are tons of similar questions, but still I could not find any answer relevant for the feature of variable length arrays in C99/C11. How to pass multidimensional variable length array to a ...
1
vote
1answer
68 views

Comparing char with enum

I have an enum defined this way: typedef enum : unsigned char { START_DELIMITER = 0xAA, END_DELIMITER = 0xBB, } Delimiter; When I compare the delimiter value with with char byte from ...
0
votes
1answer
76 views

Native code Windows8 Development without VS?

Since the VS C compiler has never done C99 very well I have always done my native code C development for desktop using a (terrible) port of gcc to windows. Anyway, I was wondering will WINRT's "native ...
0
votes
2answers
51 views

Change default from Extern to Static

I always forget to add the 'static' prefix to my variabeles and functions, and so the GCC marks them as extern. Is it possible to change this behaviour so that it marks everything static by default. ...
0
votes
0answers
76 views

pthread and array, how to rewrite same position?

I am having problems with an array[MAX] of p_thread. When my array is full, I return on the first position and make a pthread_join(array[0], NULL). Later, when I try to have a pthread_create(array[0] ...
4
votes
4answers
90 views

Why does the standard let functions that don't return compile?

f() does not return even though it's signature say it should. Why is the reason for allowing this to compiling? Is there a reason the C standard does not require the compiler to make it fail? I know ...
2
votes
1answer
176 views

Circular buffer without modulo operation

In Wikipedia it states that a modulo operation is required to check the available space in a circular buffer. However in my implementation I simply do: static size_t bytes_used(const ringbuffer* rb) ...
4
votes
1answer
68 views

Volatile needed here?

I have a function where I update a structure, and also disable interrupts. bool readBuffer() { __disable_irq(); rb->reader += 1; // Just an example __enable_irq(); return true; ...
3
votes
1answer
105 views

Interrupt-safe buffer

I'm writing code for an embedded system (Cortex M0) and do not have all the luxuries of mutexes/spinlocks/etc. Is there a simple way to add data to a shared buffer (log-file) which will be flushed to ...
0
votes
2answers
91 views

Lock-free buffer

In my code I have a buffer, and my code to add data to it is: bool push_string(file_buffer *cb, const char* message, const unsigned short msglen) { unsigned int size = msglen; if(cb->head ...

1 2 3 4 5 12