// skating.h

#ifndef SKATING_H
#define SKATING_H

#define NAME_LEN 20
#define COUNTRY_CODE_LEN 4 // 3 chars plus \0

struct SkaterData_S
{
  char name[NAME_LEN];
  double score;
  char country[COUNTRY_CODE_LEN];
  int age;
};

#endif

