Skip to content

Commit

Permalink
Se agrega implementación de la función de Josué.
Browse files Browse the repository at this point in the history
Se agrega implementación de la función de Josué.
  • Loading branch information
josueelias9 committed Apr 24, 2021
1 parent 461b0eb commit 17cdfbc
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/alumnos.c
Original file line number Diff line number Diff line change
Expand Up @@ -204,4 +204,13 @@ bool DamianCaputo(char * cadena, size_t espacio) {
return SerializarAlumno(cadena, espacio, &alumno);
}

bool JosueHuaman(char * cadena, size_t espacio) {
const struct alumno_s alumno = {
.apellidos = "HUAMAN",
.nombres = "Josue Elias",
.documento = "00.000.000",
};

return SerializarAlumno(cadena, espacio, &alumno);
}
/*=====[Implementations of private functions]================================*/

0 comments on commit 17cdfbc

Please sign in to comment.