Tagged Questions

7
votes
9answers
415 views

Why C/C++’s #pragma_once isn’t an ISO standard?

I am currently working on a big project and maintaining all those include guards makes me crazy! Writing it by hand is frustrating waste of time. Although many editors can generate include guards this …
3
votes
2answers
73 views

SAS macro include guards

In other programming languages such as C++, include guards are used to prevent multiple inclusions of the same code. Like this in C++: #ifndef FOO_INCLUDED #define FOO_INCLUDED .... #endif Does it …
1
vote
5answers
264 views

Tricky include situation in C

I have a file named cpu.h that includes two other headers named register.h and addrmode.h. A cpu_t struct is defined in cpu.h that the two includes need for their functions. I try to include cpu.h in …
0
votes
2answers
87 views

how to include javascript files in Google Gears Worker (no DOM access)

how does one include other .js files in the .js of a Worker. Every "include" solution for Javascript that I've found does it by loading into a tag, which is not an option for Workers since they don't …
6
votes
9answers
1k views

C header file loops

I have a couple of header files, which boil down to: tree.h: #include "element.h" typedef struct tree_ { struct *tree_ first_child; struct *tree_ next_sibling; int tag; element *obj; …
11
votes
7answers
1k views

Is #pragma once a safe include guard?

I've read that there is some compiler optimization when using #pragma once which can result in faster compilation. I recognize that is non-standard, and thus could pose a cross-platform compatibility …
1
vote
9answers
2k views

prevent direct access to a php include file.

I have a php file which I will be using as exclusively as an include. Therefor I would like to throw an error instead of executing it when it's accessed directly by typing in the URL instead of being …
0
votes
4answers
656 views

suppress gcc warnings : “warning: this is the location of the previous definition”

Hi, I need a set of wrappers around the standard system calls-open,listen,etc. For these i have a few "#define" as in: #define open(a,b,c) JCL_Open(a,b,c) But when i compile the header and …