All pastes #618162 Raw Edit

plutonas

public c v1 · immutable
#618162 ·published 2007-07-13 19:48 UTC
rendered paste body
#ifndef A33_DEPARTMENT_H#define A33_DEPARTMENT_H 1#include "global_consts.h"struct Department{  uint id;  uint num_accepted;  uint topic1, topic2; /* ranging from 1 to N_EXAMS */  static const uint cf1 = 13;  static const uint cf2 = 7;};void read_department_from_file(FILE* f, Department* d){  fscanf(f, "%u", &d->id);  fscanf(f, "%u", &d->num_accepted);  fscanf(f, "%u", &d->topic1);  fscanf(f, "%u", &d->topic2);}#endif /* A33_DEPRTMENT_H */