Ajustements pour doxygen

This commit is contained in:
Antoine Bartuccio 2017-01-01 16:47:49 +01:00
parent d763abfc80
commit 0d50d00a90
2 changed files with 3 additions and 8 deletions

View File

@ -39,7 +39,6 @@ typedef struct {
* @param x x position * @param x x position
* @param y y position * @param y y position
* @param value display white if true and black if false * @param value display white if true and black if false
* @return
*/ */
void setPixel(SDL_Renderer *renderer, int x, int y, bool value); void setPixel(SDL_Renderer *renderer, int x, int y, bool value);
@ -47,14 +46,12 @@ void setPixel(SDL_Renderer *renderer, int x, int y, bool value);
* Display an entire matrix on a given screen * Display an entire matrix on a given screen
* @param screen the screen where the matrix should be displayed * @param screen the screen where the matrix should be displayed
* @param m a Matrix * @param m a Matrix
* @return
*/ */
void displayMatrixSDL(SCREEN *screen, Matrix m); void displayMatrixSDL(SCREEN *screen, Matrix m);
/** /**
* Wait until the user press the enter key * Wait until the user press the enter key
* @param screen the screen where the renderer is * @param screen the screen where the renderer is
* @return
*/ */
void waitUntilEnter(SCREEN * screen); void waitUntilEnter(SCREEN * screen);
@ -76,7 +73,6 @@ bool inputYesOrNo(char message[]);
* Display matrix choosing the right function * Display matrix choosing the right function
* @param m a Matrix * @param m a Matrix
* @param useSDL a bool * @param useSDL a bool
* @return
*/ */
void displayMatrixGUI(Matrix m, bool useSDL); void displayMatrixGUI(Matrix m, bool useSDL);
@ -90,7 +86,6 @@ int safeNumberInput(int min, int max);
/** /**
* Clears the buffer of stdin * Clears the buffer of stdin
* @return
*/ */
void clearBuffer(); void clearBuffer();

View File

@ -25,9 +25,9 @@
/** /**
* An essential basic type, added an ERROR for out of bounds * An essential basic type, added an ERROR for out of bounds
* *
* @param true : 1 * @param true 1
* @param false : 0 * @param false 0
* @param ERROR : -1 * @param ERROR -1
* *
*/ */
typedef enum Bool{ typedef enum Bool{