Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 {
    ...
} node_t;

struct list_iter_t {
    node_t *current;
    // this contains info on whether the iterator has reached the end, etc.
    char danger;
};

struct list_t {
    ...
}

list_iter_t iterator(list_t *list) {
    list_iter_t iter;
    ...
    return iter;
}

Is there anything I can do aside from including the struct declaration in the header file so that in some file test.c I can have:

#include "list.h"

void foo(list_t *list) {
    list_iter_t = iterator(list);
    ...
}

Like maybe tell the compiler the storage size of list_iter_t somehow? It's inconvenient to have to use a pointer (not because it's a pointer, but for other reasons), but at the same time I would like to hide the implementation details as much as possible.

share|improve this question
1  
Are you asking if you can declare variable whose type is incomplete? You can't. – Kerrek SB Sep 2 '11 at 1:53
3  
No there isn't. You can't declare an incomplete type. Also, your typedefs are wrong. They should be typedef struct list_t list_t; typedef struct list_iter_t list_iter_t;. Think about it this way, if what you ask for were possible, there would be no such thing as an opaque type in C. Someone tries to hide the innards of a struct from you by giving you only a header containing a forward declaration and a library that goes along with it, you could simply declare an instance in your code and use it. – Praetorian Sep 2 '11 at 1:56
Okay thanks. (The absence of "struct" in the typedef was a typo.) – Nick Sep 2 '11 at 2:05

2 Answers

up vote 3 down vote accepted

The succinct answer is "No".

The way you tell the compiler the size of a struct is by telling it the details of how the struct is structured. If you want to allocate an object, rather than a pointer to the object, the compiler must know the complete type of the object. You also can't access the members of a structure via a pointer to the structure if the type is incomplete. That is, the compiler must know the offset and type of the member to generate the correct code to access someptr->member (as well as to allocate somevalue or access somevalue.member).

share|improve this answer

It is possible to tell the compiler the size of the structure, using a dummy definition like:

struct node_t {
    char dummy[sizeof(struct { ... })];
};

(with the proper definition instead available to the implementation file).

Formally this causes undefined behaviour; it is likely to somewhat work in practice, though.

You are probably best off just including the proper structure definition though, and leaving a comment to the effect that code should simply not touch the internal members.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.