Tagged Questions
0
votes
0answers
31 views
Why do different C programming environments produce different macro side effects? [duplicate]
I am working on a homework assignment and we are studying macros and side effects. One of the questions asks why the output values of the program could be different when using GCC programming ...
1
vote
3answers
57 views
Linux Kernel Version Macro Definition
I'm wondering if there is a gcc macro that will tell me the Linux kernel version so I can set variable types appropriately. If not, how would I go about defining my own macro that does this?
0
votes
1answer
58 views
In C, is there a better way to calculate uncertainty values?
What I've been doing is using a #define UNC (uncertainty) to toggle on and off the functionality for calculating x (the value) and dx (the uncertainty). It works pretty well, but it's not easy to read ...
-1
votes
4answers
114 views
Defining smallest possible sized macro in C
I want to define a boolean macro in C that uses less than 4 bytes. I have looked into this, and maybe it is possible to define an asm macro, with gcc, that could be less. It is important that the ...
4
votes
6answers
120 views
c define multiline macro?
#define DEBUG_BREAK(a)\
if ((a)) \
{\
__asm int 3;\
}
I have defined a macro as above, and try to use it
#include "test_define.h"
int main()
{
DEBUG_BREAK(1 == 1);
return 0;
}
...
22
votes
1answer
285 views
Can macros be overloaded by number of arguments?
How does this work? How can a C99/C++11 variadic macro be implemented to expand to different things on the sole basis of how many arguments are given to it?
0
votes
1answer
52 views
C macro overloading for N-D arrays assignment
There are already many questions/answers about macro overloading. But, I cannot find a way to apply it to my particular problem.
I would like to conveniently assign values to my 3D images in C.
For ...
7
votes
5answers
240 views
what's this C++ macro meaning?
I can't figure out what this macro means:
#define DECLARE_HANDLE(n) typedef struct n##__{int i;}*n
DECLARE_HANDLE(HWND);
I have learned from The C Program that
"##" meaning connect the ...
2
votes
3answers
178 views
Templates from C++ in C
I am trying to recreate some classes from the C++ standard library in C. For example, the std::pair class.
To emulate templates, I used macros of course. Here is an example of how it looks like:
...
0
votes
1answer
58 views
BITCOUNT macro in C
how can I count how many zero bits are in variable?
I must use macro like thist BITCOUNT(x,c) where x is my variable and c is count of zero bits in x
example: X = 00101001 and C = 5
2
votes
3answers
102 views
Call a C preprocessor macro multiple times (through a variable)
I'd like to clean up my assembly code and povide a way to call "NOP" multiple times through a macro:
#define NOP() asm(" nop")
#define NOP_N( N ) \
NOP(); \
NOP(); \
.... call NOP() N ...
0
votes
2answers
57 views
Function like macros returning a value
Recently came across following examples which returns a register read __ret but without a return statement
#define READWORD(offset) ({ \
unsigned short __ret=0;\
...
2
votes
3answers
94 views
how to convert string constant to preprocessing token in C
I want to convert string constant to preprocessing token using macro.
Example:
// get the first character of marco argument to postfix of new data type.
#define TYPE(typename) Prefix ## ...
2
votes
3answers
61 views
Looping construct in a C99 macro
I want to generate an array initializer with arbitrary logic that unfortunately requires some looping.
#define RANDOM_ARRAY(n) \
...
double array[] = RANDOM_ARRAY(10);
Suppose the code above ...
0
votes
1answer
47 views
Include a file multiple times with different macros
I got a file that contains generic methods for working with arrays of different number types (the basic ideas are described in Pseudo-generics in C). The type can be specified by setting a TYPE macro. ...
2
votes
2answers
49 views
C macro: concatenate symbols conditonally
I have
#define A_T 1
#define B_T 2
int x_a = 1, x_b =2;
How can I define a macro, which can concatenate the suffix _a and _b to the var name?
for example, something like this
#define A_T_SUF _a
...
0
votes
1answer
50 views
Running TX433 and RX433 RF modules with AVR microcontrollers
I am trying to interface an RF module with AVR ATmega 128.
I found this code interesting, but I couldn't understand these two lines:
//define receive parameters
#define SYNC 0XAA// synchro signal
...
3
votes
2answers
86 views
Pseudo-generics in C
I need to implement some methods that do stuff with different kinds of number arrays. Usually, I'd use generics for that job, but as C doesn't provide them, I'm now trying to emulate them using ...
0
votes
2answers
33 views
Chained macro invocations. Argument in parentheses treated differently?
#define A(p1, p2, p3, p4) foo(p1, p2, p3, p4)
#define B(s) A(p1, p2, (s), p4)
Here, A() is a macros binding, aimed to increase portability should we ever need to call bar(p1, p2, p3, p4) and not ...
1
vote
5answers
69 views
Why should or shouldn't we prefer a macro that accepts arguments over a function that does the same job?
Following are two programs that give the area of the circle when the radius is passed as argument.But in the first program, macro.c, I am using a macro for the job ,while in the second,function.c I am ...
1
vote
2answers
61 views
Macro SWAP(t,x,y) exchanging two arguments of type t
So I am basically trying to make a SWAP(t,x,y) macro that exchanges two arguments of type t. I am trying to think of going around the problem when these two arguments are of the form
v[i++] and ...
0
votes
2answers
65 views
Freeing allocated memory conditionally within a macro in C
I have a function that reads a csv file and then updates a struct with it's parameters.
I wanted to be able to cycle through a structs elements, so I turned to macros. The output of parsing the csv ...
1
vote
5answers
120 views
looking for macro which will replace function
I dont know if name of topic exactly introduces my problem, but thing is:
in my company code, there is a function, for example:
float func_x(float a){
float b
return b
}
that function ...
1
vote
1answer
49 views
C macro gives compile time error
I want to use macro to expand a function. So I wrote the following code:
#define INIT ( T ) \
struct T * init##T() { \
struct T * obj = ( struct T *)malloc( sizeof (struct T )); \
return ...
1
vote
3answers
92 views
safe malloc/realloc: wrapping the call into a macro?
I would like to wrap my calls to malloc/realloc into a macro that would stop the program if the method returns NULL
can I safely use the following macro ?
#define SAFEMALLOC(SIZEOF) (malloc(SIZEOF) ...
0
votes
0answers
50 views
clang preprocessor “empty macro arguments”
Here is the original definition:
#define foo(a,b) void foo(int a, int b){}
foo(,);
The above code get warning message when building with clang:
"warning: empty macro arguments are a C99 feature ...
22
votes
4answers
1k views
Explanation of C++ FAQ's unsafe macro?
According to the C++ FAQ, macros are evil:
[9.5] Why should I use inline functions instead of plain old #define
macros?
Because #define macros are evil in 4 different ways: evil#1, evil#2,
...
1
vote
1answer
52 views
Is it possible to stringify a variadic macro?
gcc (GCC) 4.7.2
c89
Is it possible to stringify a variadic macro?
I have the following macro and I want to output the resulting string from the fmt and arguments.
#define ERROR_MESSAGE(priority, ...
1
vote
1answer
151 views
“with” macro in C
I was looking for a macro that will resemble the with-construct.
The usage should be something like:
with (lock(&x), unlock(&x)) {
...
}
It might be useful for some other purposes.
I ...
2
votes
1answer
87 views
How to pre-compile a C source file without expand the included header file?
I am working on a large project using C language, which has a lot of preprocessor macros: #ifdef/#if. The macros are defined in makefile.
In order to get the clean code, I modified the makefile to ...
-2
votes
1answer
93 views
#define with member from structured pointer
I have a structure like :
struct spidev_data {
int busy;
int irq;
};
And I just want to access a member ( like spidev->busy ) by a define, so I try this:
#define BUSY spidev->busy
But it ...
0
votes
3answers
45 views
Are getchar() and putchar() functions or marcros?
I referred to two reliable sources for the information and both seems to have different definitions of the same thing:
http://www.cplusplus.com/reference/clibr%E2%80%A6
...
2
votes
2answers
88 views
How to #define in a macro (or alternatives)
I have this code:
#ifdef something32 <----- might not be defined
the_real_value = thing[something32];
thing[something32] = my_value;
#else
the_real_value = ...
1
vote
2answers
124 views
Calling different C functions according to the C++ template type
my problem is the following:
I have a C library which contain several versions of each function according to which data type they are working with e.g.:
void add(double *a, double *b, double *c);
...
1
vote
0answers
37 views
macro to check if the return value of a function is being checked
I have a function
void *custom_get_value(ObjectPtr)
This function traditionally never used to return NULL.It can return any of the following values
uint32_t
int32_t
uint64_t
int64_t
uint8_t
...
0
votes
2answers
45 views
Token-Pasting (##) backslashes in C Macro
I'm struggling to make a macro that used like this:
BYTE_AS_STRING(0A);
expands into:
"\x0A"
is it possible?
So far I've tried this:
#define STEP2(a) #a
#define ...
4
votes
3answers
137 views
How to create strings using c/c++ macros arguments
I'm trying to achieve this:
char * fname = "results5.txt"
Using a macro like this:
#define FILENAME(NUM) "results" NUM ".txt"
int number = 5;
char * fname = FILENAME(number);
It's possible ...
0
votes
2answers
41 views
Check the first character of a string in a c macro
I am looking to create a macro that checks to see if the first character of a string is a defined character, the macro will be passed some text and a character and I would like to check to see if the ...
0
votes
2answers
39 views
Confusing gcc error message in simple macro expansion
I've been looking at this too long and just can't see what the problem is:
#include <stdio.h>
typedef struct {
int a;
int b;
} S;
#define F(a,b) ( v.a = a, v.b = b, v )
int ...
3
votes
1answer
56 views
Macro to cycle through and allocate data to members of structs incorrectly recognises struct member as pointer
My problem is that atoi is converting a string's hexadecimal memory address to decimal, instead of what's contained within the string. It is doing this during a macro. Why is it interpreting ...
3
votes
2answers
57 views
What does this function like macro mean?
I am a relatively Good c programmer, i love to do research and hate to ask questions, but this particular piece of code is simply troubling please help.
It was used with XQueryKeymap, but i don't ...
0
votes
3answers
35 views
Macro issue for timing
I am searching a nice way to create a "no action" timing (CPU useless operation for timing).
To explain my issue here is the code that I want to change to a macro :
int main (void)
{
int i=0;
...
1
vote
0answers
58 views
Document C in Doxygen despite usage of macros?
I have macros in C source files that generate function declarations as well as for structures.
I made the decision to use doxygen in order to document them, but as long as my source file does not ...
0
votes
1answer
53 views
Undefine a function-like macro in c?
I am trying to do some hacks over the glibc, and I wanted to know whether it's possible to redefine function-like macros ?
For example, <tgmath.h> has the following macro:
#define expm1(Val) ...
3
votes
1answer
77 views
Macro concatenation using compiler define
This should be simple, but I'm struggling to figure it out. I have PROJECT_NAME as a compiler (g++) -D define, and I want to concatenate it with some other text to form a namespace name. My current ...
2
votes
2answers
104 views
Use of double hash (##) in C [duplicate]
header file cissvar.h has this definition:
#define CISSQ_REQUEST_QUEUE(name, index)
static __inline void
ciss_initq_ ## name (struct ciss_softc ...
3
votes
2answers
99 views
C preprocessor using the closing bracket of a parent macro
I have this code which works:
#include <stdio.h>
#define A(x) x B
#define B(x) C(x,
#define C(x,y) y x)
int main( void ) {
printf( A("1") ("2") "3" );
}
It prints 132 (the point of the A ...
0
votes
3answers
89 views
understanding container_of macro in linux kernel
when I was browsing linux kernel, I found container_of macro which is defined as follows:
#define container_of(ptr, type, member) ({ \
const typeof( ((type ...
0
votes
1answer
86 views
Common macro to read input data and check its validity
I saw on Stack Overflow that many similar questions are repeated and they are related to the reading of one input data item from stdin and check its validity.
The data could be integer "%d", double ...
0
votes
2answers
64 views
How to pass the result of a function as a Macro variable?
Say I've set up a macro expansion as follows...
#define WARN_START @"DANGER"
#define WARN_RESET @"THE COAST IS CLEAR"
#define WARN(x) WARN_START x WARN_RESET
INPUT WARN(@"*** Your boss is coming. ...




