1
vote
0answers
18 views

Python: How to output block of C structs above loop using Jinja2 template?

I am not even quite sure if this is possible. Basically, I have a Jinja2 template with a for loop. I want to know is there a want to output code outside of the loop if certain conditions are met. I ...
2
votes
3answers
181 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: ...
3
votes
1answer
58 views

Template function to print a Thrust vector

I'm writing a matrix template class that prints to both file and std::cout, i.e.: matrix<float> myMat; ... myMat.cout(...) // print to std::cout myMat.write("out.txt") // print to file ...
1
vote
2answers
130 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); ...
2
votes
5answers
90 views

Accessing C++ templates from C

I am using OpenCV for some image manipulation and it has several functions that must be given a data type to perform correctly. My idea is to template these functions so I do not have to write a ...
-3
votes
1answer
80 views

Writing C code from Java - template engines? [closed]

I need to generate C code from a Java program and I am wondering what kind of solutions / help there is for such things. Is there some kind of template framework for such things? E.g. at the beginning ...
0
votes
2answers
58 views

setting default value depending upon data type in c++

I have a sample code like template <typename BIT_LENGTH> class mod { public: mod(BIT_LENGTH val) : m_val (powl(2,sizeof(BIT_LENGTH) * 8) - 1), _val(val) { } void value() { std::cout ...
0
votes
1answer
108 views

Makefile .c.o when there is no *.cpp file

So basically. My makefile has this rule: .c.o : $(CC) $(CFLAGS) $(TESTFUNINCLUDE) -c $< -o $@ which works very nicely until I add some new template functions in a new hpp file... I put ...
3
votes
3answers
123 views

Are there templates in the C programming language?

I am writing a linked list implementation in C, and would like to use a language feature equivalent to C++'s templates to make my work easier. Does such a feature exist?
0
votes
4answers
89 views

Resolving ifdefs when compiling a shared library

I'm working on a shared library that has some header files which contain function templates like: #ifdef somecompilerflag #define FUNCTION functionA #else #define FUNCTION functionB #endif void ...
0
votes
0answers
24 views

Compile code to multiple directories in Visual Studio?

I am trying to make a simple template for driver so that I can write drivers quickly, however, I was wondering if it's possible to compile code in different directories. For instance, I want to ...
1
vote
0answers
173 views

OpenCV Template Matching - Comparing Results

Is it possible to compare the resulting images after using cvMatchTemplate? There are two objects in my "haystack". One is of similar scale to the template, and is found by the matcher. The other, ...
0
votes
3answers
162 views

Creating a C++ Template Like Functions With Local Variables in C

Here's a riddle. Imagine I have the following C++ function: template<uint8_t MASK> uint8_t Foo(uint8_t val) { uint8_t step = 0; uint8_t result = 0; if(MASK & 0x01) {result |= ...
1
vote
1answer
128 views

why don't add template support for pure C? [closed]

Somebody beleives we can acheive good structure of code with template meta programming, without object-orient method. So can we just add template support to C, to make C more powerful without losing ...
0
votes
2answers
419 views

Using C++ Templates with C structs for introspection?

I'm doing some work in C++ for a company that has everything else written in C (using C isn't an option for me :( ). They have a number of data structures that are VERY similar (i.e., they all have ...
1
vote
2answers
205 views

Templating in C using the Preprocessor

I'm wondering why I have never seen the following way to implement templates in C before. My idea was to make the Preprocessor to the templating-work. container.h: #ifndef TEMPLATE_TYPE #error ...
3
votes
7answers
501 views

Simulation of templates in C

I' m trying to implement a queue structure using C. My implementation is very simple; the queue can hold only ints and nothing else. I was wondering if I could simulate C++ templates in C(probably by ...
10
votes
1answer
913 views

gcc dead code elimination

I have always been told that compiler is sufficient smart to eliminate dead code. Much of the code that I am writing has a lot of information known at compile time but the code has to be written in ...
6
votes
1answer
215 views

Generating functions with macros in C++

I have the following macro that is intended to generate functions in the current scope or namespace: #define MAKE_FUNC(FNAME) \ template <typename T> \ T ##FNAME## (const T& t) \ {\ ...
2
votes
5answers
380 views

C++: Passing pointer to template class around in C

I'm writing a C wrapper API for my lib. I generally pass my C++ objects as void* in C. And there are naturally access wrapper function for every object's public function. The C code does not access ...
0
votes
1answer
104 views

How to emulate C logic and syntax in a template engine (preprocessor)?

We have a custom C template engine for web template processing. Let us say that we have a file "index.html" with the following content: {% #include <stdio.h> %} <!doctype html> ...
0
votes
2answers
431 views

Template in ansi C?

How I can create function with other types of data (some struct or sth)? In C++ exist templates, but in C? I hear about void *, but i dont know if it works. Any ideas?
0
votes
1answer
121 views

how to link template header in ANSI C?

I made a template list with help of macroses. And I have an error, when I use it in more then one time in the code. There is a link error LNC2005 in MS VS. I think, it happens, because bodies of ...
3
votes
2answers
128 views

Defacto template application in Python

Is there a defacto template application for Python? I am trying to auto generate C code for use in unit tests from python My original approach using print statements is very clunky and error prone ...
3
votes
5answers
542 views

Function pointers and C++ templates

I have a C++ code and i really need to use C function in it: int procedure(... , S_fp fun , ...) where fun - is a pointer to function which signature must be like that: int fun(double* , double* , ...
3
votes
4answers
332 views

How can I convert this c++ template function to a C alternative?

I'm converting parts of a small C++ library to C (gcc). In doing so I'm wanting to convert the following template function to a macro (comments removed for readibility). CpuReadWriteFence() is ...
1
vote
1answer
825 views

Converting string into hex format [closed]

I have to convert my string to hex format. How to do that? I have a char* buffer and I have to change buf data into hex format. I have to store in char buff or Template string. Please help me do that. ...
1
vote
2answers
465 views

C Programming template data type

I have 2 functions in C doing exactly the same thing, the only difference is the data types passed to each function e.g. one is int the other one char* . Is there a way to combine these functions to ...
0
votes
3answers
471 views

C++: initializing template constructor/routine declared in header file?

I have a template defined in my header file as follows: template<typename T> class BoundedBuffer { unsigned int size; T entries[]; public: BoundedBuffer( const unsigned int size ...
2
votes
2answers
342 views

C Wrapper for C++: How to deal with C++ templates?

Earlier was asking about writing a c wrapper for c++ classes ( C Wrapper for C++ ), which is basically clear. There's one more question though: how do I deal with c++ templates? Let's say this is my ...
4
votes
4answers
522 views

How do compilers treat variable length arrays

This might seem like a beginner's question, but I am interested in the way that a compiler normally creates arrays of variable-dimensions, like in the following program. #include<iostream> int ...
0
votes
1answer
423 views

how to install postgres' tablefunc as non-poweruser

As part of our php data test framework, we start by dropping & creating a test database for the user running the test (let's call him 'foo'). Our template1 does not have a public schema. This is ...
1
vote
1answer
4k views

Error: missing type specifier - int assumed. C++ does not support default int

I wrote a sample class with template use. it's fairly simple: template <class T> class myClass { public: // construction, destruction myClass(); virtual ~myClass(); class ...
1
vote
2answers
242 views

Rewriting C++ template for C

Can anyone help me in rewriting this code from C++ to C... (it has templates... yeeee :)) Thank you. template <class T> void SWAP( T& t1, T& t2 ) { T tmp=t1; t1=t2; ...
1
vote
1answer
353 views

Integer promotion, C++ and templates

C defines various rules regarding integer promotion, here's a great answer describing how this works. In GCC you can do this: #define max(a,b) \ ({ __typeof__ (a) _a = (a); \ __typeof__ ...
0
votes
4answers
390 views

standard structure for C header and source files

Is there any standardized structure of C source and header files? I'm thinking about something like this (example for C source file): // static variables // public variables // static methods ...
2
votes
3answers
463 views

What's the C strategy to “imitate” a C++ template?

After reading some examples on stackoverflow, and following some of the answers for my previous questions (1), I've eventually come with a "strategy" for this. I've come to this: 1) Have a declare ...
10
votes
4answers
981 views

Porting Django's templates engine to C

I recently wrote a simple and tiny embedded HTTP server for my C++ app (QT) and I played a little bit with Ry's http-parser and loved it. This guy is crazy. So I told to myself: "Hey! Why not port ...
4
votes
3answers
2k views

C++ Expression Templates

I currently use C for numerical computations. I've heard that using C++ Expression Templates is better for scientific computing. What are C++ Expression Templates in simple terms? Are there books ...
1
vote
2answers
936 views

write a C or C++ library with “template”

(1). When using C++ template, is it correct that the compiler (e.g. g++) will not compile the template definition (which can only be in header file not source file) directly, but generate the code ...
18
votes
6answers
6k views

Does ANSI C support ‘templates?’

I’m taking a C++ class, and my teacher mentioned in passing that the typename keyword existed in C++ (as opposed to using the class keyword in a template declaration), for backwards compatibility with ...
3
votes
5answers
595 views

<template> replacement for C linkedList

Just finished small linked list in C, and realized that I got a problem :) There is no template arguments for C, so at the start of the file I declaring my data type for list, something like: ...
6
votes
2answers
1k views

__FILE__ macro manipulation handling at compile time

One of the issues I have had in porting some stuff from Solaris to Linux is that the Solaris compiler expands the macro __FILE__ during preprocessing to the file name (e.g. MyFile.cpp) whereas gcc on ...
10
votes
9answers
4k views

How do I implement no-op macro (or template) in C++?

How do I implement no-op macro in C++? #include <iostream> #ifdef NOOP #define conditional_noop(x) what goes here? #else #define conditional_noop(x) std::cout ...
-1
votes
6answers
307 views

How should I compare a c++ metaprogram with an C code ? (runtime )

I have ported a C program to a C++ Template Meta program .Now i want to compare the runtime . Since there is almost no runtime in the C++ program , how should i compare these 2 programs. Can i compare ...
7
votes
8answers
2k views

Is Template Metaprogramming faster than the equivalent C code?

Is Template Metaprogramming faster than the equivalent C code ? ( I'm talking about the runtime performance) :)
2
votes
6answers
1k views

mangling __FILE__ and __LINE__ in code for quoting?

Is there a way to get the C/C++ preprocessor or a template or such to mangle/hash the __FILE__ and __LINE__ and perhaps some other external input like a build-number into a single short number that ...