| 12345678910111213141516171819202122232425 |
- #include <stdio.h>
- struct User {
- char* name;
- char* email;
- };
- typedef struct {
- int id;
- char* name;
- } Admin;
- void login(const char* user, const char* pass) {
- printf("Logging in %s\n", user);
- }
- int logout(char* user) {
- return 0;
- }
- static void helper() {
- printf("Helper\n");
- }
- const int MAX_RETRIES = 3;
|