You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ffi-clang/spec/ffi/clang/fixtures/forward.h

17 lines
296 B
C

#ifndef FORWARD_H
#define FORWARD_H
// This is an opaque declaration, one would assume it is defined in a c file someplace
typedef struct Opaque Opaque;
// This is a forward declaration, the definition is below
struct Forward;
// This is the definition
struct Forward
{
int field1;
}
#endif