Initial commit of Polytech'Marseille tutorial C exercices
authorJérôme Benoit <jerome.benoit@piment-noir.org>
Sat, 11 Feb 2017 21:20:10 +0000 (22:20 +0100)
committerJérôme Benoit <jerome.benoit@piment-noir.org>
Sat, 11 Feb 2017 21:20:10 +0000 (22:20 +0100)
commitde32237fa31ef30b5242996406dc112462ad3c1d
treef26ca2a1ccd4586a1394129f91703fa35bbb6969
Initial commit of Polytech'Marseille tutorial C exercices

* Introduce an exercice solution skeleton with a basic
  Makefile and piece of C elementary structure file.
* Preliminary work on tutorial's exercice one :
- add void swap(int* v1, int* v2); function;
- add void displayArray(int* array, int count) function;
        - add bool sortFirst(int* array, int length) function;
* Document a bit the usage in the README file.

Signed-off-by: Jérôme Benoit <jerome.benoit@piment-noir.org>
.gitignore [new file with mode: 0644]
README [new file with mode: 0644]
exo1/Makefile [new file with mode: 0644]
exo1/exo1.c [new file with mode: 0644]
exo_skel/Makefile [new file with mode: 0644]
exo_skel/exo_skel.c [new file with mode: 0644]