In my library, I have an instance structure, which contains everything needed for the library, this is so you can define multiple instances of the library. The library requires the user to define their own extension, or custom variables.
This is what I tried:
Library.h
typedef struct custom_s *custom;
typedef struct {
int a;
int b;
custom customs;
} instance;
And then the user can just do:
Main.c
// User sets their own custom structure
struct custom_s {
int c;
};
int main(void) {
instance test;
test.customs.c = 1;
}
However I get the error of "Segmentation fault".
Shouldn't it be:
test.customs->c = 1
Since you type'd it in
typedef struct custom_s *custom;
and Used as
custom
in the instance structure.Which is never allocated...