Skip to content
This repository has been archived by the owner on Jun 24, 2020. It is now read-only.

Agrego los datos del alumno PACHER Federico #30

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,4 @@ $(BIN_DIR): $(OUT_DIR)
$(OBJ_DIR): $(OUT_DIR)
@echo Creating output objects folder
@mkdir $(OBJ_DIR)

8 changes: 7 additions & 1 deletion src/alumnos.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@ static const struct alumno_s HANES_SCIARRONE = {
.documento = "37.867.564",
};

static const struct alumno_s FEDERICO_PACHER = {
.apellidos = "PACHER",
.nombres = "Federico",
.documento = "28.215.978",
};

static const struct alumno_s JOSE_LOPEZ = {
.apellidos = "LOPEZ",
.nombres = "José Daniel",
Expand Down Expand Up @@ -85,6 +91,7 @@ static const struct alumno_s RAUL_CAMACHO = {
};

const alumno_t ALUMNOS[] = {
&FEDERICO_PACHER,
&RAUL_CAMACHO,
&DAVID_BROIN,
&MUNOZ_JORGE,
Expand All @@ -97,7 +104,6 @@ const alumno_t ALUMNOS[] = {
&FREDS_AMUNDARAY,
};


const int CANTIDAD_ALUMNOS = (sizeof(ALUMNOS) / sizeof(alumno_t));

/*=====[Definitions of private global variables]=============================*/
Expand Down