1
vote
3answers
54 views

Why is forward declaration of structure not working in my code? When can it be used in C?

Isn't forward declaration, whether for structures or functions, supposed to do what forward declaration is expected to do, ie, to let us use the structure or function before they are defined? Why is ...
-2
votes
1answer
69 views

Struct declaration in C [closed]

I have a simple program in pure C, for reading records from file and putting the into linked list. I am not allowed to use global variables. Program looks like this: Here are some includes Some ...
3
votes
4answers
58 views

Does the forward declaration need to be identical to its counterpart in the definition?

Notice how in this code, the double quadratic(); at the top doesn't match the **double quadratic(double a, double b, double c) in the definition below main. Yet oddly, this compiles! I'm using gcc ...
2
votes
3answers
163 views

Forward declaration of function pointer typedef

I've run into a peculiar problem. It might be best to just show you what I'm trying to do and then explain it. typedef void functionPointerType ( struct_A * sA ); typedef struct { ...
2
votes
2answers
76 views

Declare a variable or function in one library and define it in another

I have a library I use in all my apps, containing common code. I compile it as a "Framework" for Mac and a "Static Library" for iOS. I would like for the library to be able to reference a variable ...
1
vote
1answer
243 views

Porting C -> C++, having trouble with accessing struct within unnamed union

I've been working on porting Marcel’s Simple Chess Program http://marcelk.net/mscp/ from C to C++. I have never worked much with unions, much less structs within unions. The top part I've listed is ...
0
votes
1answer
367 views

Declaring and allocating memory for a double pointer (char**)

I have a program that requires me to read in large amount of data into a array of strings, and there is a set part of the initial function to declare all variables. The problem is i do not know the ...
6
votes
4answers
262 views

Different declarations of the same function/global variable in two files

I have 2 questions regarding different declarations of the same function and global variable in two files in case of C and C++ as well. Different function declarations Consider the following code ...
0
votes
2answers
91 views

c forward declare (tried like c++ but didn't work)

A.h #ifndef A #define A #include "B.h" typedef struct { B* b; } A; void InitA(A* a) { a->b=malloc(sizeof(B)); } #endif B.h #ifndef B #define B #include "A.h" typedef struct { ...
6
votes
1answer
308 views

typedef with a forward declaration side-effect?

I have the following declaration in a header file: struct mystruct; int func(struct mystruct* s); // Passing struct mystruct* Without the forward declaration, the compiler would obviously ...
1
vote
0answers
242 views

forward declaration of C structure in C++ [duplicate]

Possible Duplicate: Forward declare FILE * Suppose I want to write a wrapper class for C struct that is accest by a pointer to it such as FILE in C you have to say typedef struct _iobuf ...
3
votes
2answers
774 views

Forward declaration of inline functions

I have a header file that is going to contain a large amount (30+) of inline functions. Rather than having the reader scroll or search for the definition (implementation) of the inline function, I ...
1
vote
2answers
276 views

function forward-declaration inside another function

Code goes first: void foo(int x) { void bar(int); //is this forward-decl legal? bar(x); } void bar(int x) { //do stuff } In the code above, foo calls bar, usually I put the ...
2
votes
4answers
224 views

using C struct that is declared later

I want use a typedef struct that isn't already defined, but it is later. Is there anything like a struct prototype? file container.h // i would place a sort of struct prototype here typedef struct ...
7
votes
5answers
766 views

Terminology: Forward Declaration versus Function Prototype

To me these terms are essentially synonymous when using the C programming language. In practice I might prefer "forward declaration" for in-file prototypes versus "function prototype" for prototypes ...
1
vote
3answers
3k views

typedef stuct with forward declaration in C

I have something like: typedef struct Data DATA, *DATA_PTR; typedef struct Units UNITS, *UNITS_PTR; struct Data { double miscData; UNITS units; }; struct Units { double x[2]; double ...
3
votes
2answers
3k views

C - forward declaration of enums?

Forward declaration of enums in C does not work for me. I searched the internet and stackoverflow but all of the questions regarding forward declarations of enumerators refer to c++. What do you do ...
1
vote
2answers
1k views

Any way in C to forward declare struct in header without having to use pointer in other files?

Suppose I have this in list.h: typedef struct list_t list_t; typedef struct list_iter_t list_iter_t; list_iter_t iterator(list_t *list); and then define them in list.c: typedef struct node_t { ...
2
votes
5answers
1k views

How to forward typedef'd struct in .h

I have Preprocessor.h #define MAX_FILES 15 struct Preprocessor { FILE fileVector[MAX_FILES]; int currentFile; }; typedef struct Preprocessor Prepro; void Prepro_init(Prepro* p) { ...
22
votes
12answers
5k views

Forward declarations of unnamed struct

Bounty question: So, these two Foos aren't the same thing. Fine. The second form is given in a library. How do I forward-declare it given that I can't change it? I always thought C and C++ allowed ...
2
votes
2answers
94 views

Does anyone know why this compiles successfully?

int main() { // forward declaration struct myStruct_st *mS; // Note that this will expand as "struct struct myStruct_st *mS which does not make any sense to me" return 0; } // definition of ...
1
vote
3answers
281 views

Passing pointers to private structs in C?

How can I pass around pointers to structs which have private definitions, without prepending the pointer types with struct? For example this works: typedef struct Handle { Ino ino; } Handle; ...
3
votes
4answers
300 views

foward typedef structures

gcc 4.4.4 c89 I have this in my header file. port.h struct struct_tag; int initialize_ports(struct_tag *port); In my implemenation file I have this: port.c typedef struct struct_tag { int ...
7
votes
3answers
16k views

storage size of ‘names’ isn’t known

I get this error while compiling this .c source file /INIT_SOURCE_BUILD/src/names_list.c:7: error: storage size of ‘names’ isn’t known #include <stdio.h> #include "list.h" int main(){ ...
8
votes
5answers
1k views

Forward declare FILE *

How do I forward declare FILE * in C? I normally do this using struct MyType;, but naturally this doesn't appear to be possible. If behaviour differs between C standards or compilers and with C++, ...
1
vote
3answers
1k views

Forward declarations for variables?

I have some C code that I have to port to C++. The code has a structure struct A { ... struct A * myPtr; } And now two global arrays are declared and initialized like this: //Forward ...
5
votes
3answers
838 views

How does a C/C++ compiler find the definitions of prototypes in header files?

When I declare a function in a header file, and put the definition of that function in some other file, how does the compiler/linker find the definition? Does it systematically search every file in ...
0
votes
1answer
825 views

Better way to forward declare typedef'd structures in C89?

struct SomeStruct; typedef struct SomeStruct SomeStruct; The above works, but is there a simpler (or better) way?