From 58da9d9d8a167aecfa8ff30b650b4393046065eb Mon Sep 17 00:00:00 2001 From: Fabiola de las Casas Date: Wed, 1 Jul 2020 06:36:43 -0700 Subject: [PATCH 1/2] "Se agregan los datos del alumno DE LAS CASAS ESCARDO, Fabiola" --- src/alumnos.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/alumnos.c b/src/alumnos.c index dc3b4d9..a5c1895 100644 --- a/src/alumnos.c +++ b/src/alumnos.c @@ -25,14 +25,14 @@ /*=====[Definitions of public global variables]==============================*/ -static const struct alumno_s ESTEBAN_VOLENTINI = { - .apellidos = "VOLENTINI", - .nombres = "Esteban Daniel", - .documento = "23.517.968", +static const struct alumno_s FABIOLA_DELASCASAS = { + .apellidos = "DE LAS CASAS ESCARDO", + .nombres = "Fabiola", + .documento = "93.712.282", }; const alumno_t ALUMNOS[] = { - &ESTEBAN_VOLENTINI, + &FABIOLA_DELASCASAS, }; const int CANTIDAD_ALUMNOS = (sizeof(ALUMNOS) / sizeof(alumno_t)); From 3af3ef292027ba6ecf27d4e69ccddc8998f0d012 Mon Sep 17 00:00:00 2001 From: Fabiola de las Casas Date: Mon, 6 Jul 2020 20:15:10 -0300 Subject: [PATCH 2/2] =?UTF-8?q?Correcci=C3=B3n=20del=20commit=20inicial,?= =?UTF-8?q?=20agregando=20los=20datos=20que=20ya=20estaban?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/alumnos.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/alumnos.c b/src/alumnos.c index a5c1895..a1ba3f8 100644 --- a/src/alumnos.c +++ b/src/alumnos.c @@ -25,6 +25,12 @@ /*=====[Definitions of public global variables]==============================*/ +static const struct alumno_s ESTEBAN_VOLENTINI = { + .apellidos = "VOLENTINI", + .nombres = "Esteban Daniel", + .documento = "23.517.968", +}; + static const struct alumno_s FABIOLA_DELASCASAS = { .apellidos = "DE LAS CASAS ESCARDO", .nombres = "Fabiola", @@ -32,6 +38,7 @@ static const struct alumno_s FABIOLA_DELASCASAS = { }; const alumno_t ALUMNOS[] = { + &ESTEBAN_VOLENTINI, &FABIOLA_DELASCASAS, };