20 lines
311 B
C
20 lines
311 B
C
#ifndef GRADE_SCHOOL_H
|
|
#define GRADE_SCHOOL_H
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
#define MAX_NAME_LENGTH 20
|
|
#define MAX_STUDENTS 20
|
|
|
|
typedef struct {
|
|
uint8_t grade;
|
|
char name[MAX_NAME_LENGTH];
|
|
} student_t;
|
|
|
|
typedef struct {
|
|
size_t count;
|
|
student_t students[MAX_STUDENTS];
|
|
} roster_t;
|
|
|
|
#endif
|