Hello, I am currently stuck trying to figure out why strncpy(user->name, username, sizeof(username)); gives me a segfault. user comes from:
char name[64];
...```
and username:
```char *username = argv[1];```
the first line of code above is the one giving me a segfault, and I do not know why, everything I have read tells me that it should work.