Hi
I have a struct
Code:
struct b_entry_t {
   uint32_t source;  
   uint32_t target;
   int counter;  
};
and I have created an instance of that
Code:
struct b_entry_t *entry;
Somewhere in my program I want to write it to file with fputs. The problem is how can I do that?
Code:
fputs (entry, pFile);
I get this warning
Code:
warning: passing argument 1 of ‘fputs’
...