Skip to content

Commit

Permalink
**"Se agregan los datos del alumno VARGAS, Nicolas"**
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicomedes77 committed Apr 10, 2021
1 parent cb86520 commit ab647d8
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 2 deletions.
4 changes: 2 additions & 2 deletions inc/alumnos.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@ typedef struct alumno_s {
} const * alumno_t;

/*=====[Definitions of public global variables]==============================*/

char cadena[100];
/*=====[Prototypes (declarations) of public functions]=======================*/

bool SerializarAlumno(char * cadena, size_t espacio, const alumno_t alumno);

bool NicolasVargas(char * cadena, size_t espacio);
/*=====[Prototypes (declarations) of public interrupt functions]=============*/

/*=====[C++ - end]===========================================================*/
Expand Down
10 changes: 10 additions & 0 deletions src/alumnos.c
Original file line number Diff line number Diff line change
Expand Up @@ -46,4 +46,14 @@ bool SerializarAlumno(char * cadena, size_t espacio, const alumno_t alumno) {
return (resultado >= 0);
}

bool NicolasVargas(char * cadena, size_t espacio) {
const struct alumno_s alumno = {
.apellidos = "VARGAS",
.nombres = "Nicolás",
.documento = "33.154.750",
};

return SerializarAlumno(cadena, espacio, &alumno);
}

/*=====[Implementations of private functions]================================*/
6 changes: 6 additions & 0 deletions src/main.c
Original file line number Diff line number Diff line change
Expand Up @@ -35,5 +35,11 @@
/*=====[Implementations of private functions]================================*/

int main(int argc, char *argv[]) {
if (NicolasVargas(cadena, sizeof(cadena))) {
printf("Alumno: %s\r\n", cadena);
} else {
printf("No se pudo serializar el alumno\r\n");
}

return 0;
}

0 comments on commit ab647d8

Please sign in to comment.