23 lines
368 B
C
23 lines
368 B
C
#include "administration.h"
|
|
|
|
#include <stdbool.h>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include "animal.h"
|
|
|
|
|
|
int removeAnimal(
|
|
int animalId, Animal* animalArray,
|
|
size_t numberOfAnimalsPresent,
|
|
size_t* newNumberOfAnimalsPresent)
|
|
{
|
|
//add implementation
|
|
return -1;
|
|
}
|
|
|
|
|
|
// To do : add the missing functions
|
|
|
|
|