Previous Appel de fonction classique |
Parent Appel de fonction classique |
Outline | Next Le fichier source |
Écrivons le fichier function_base.h :
1 2 |
#ifndef __FUNCTION_BASE_H__ #define __FUNCTION_BASE_H__ |
1 |
#include <iostream>
|
1 |
void function_base(float* tabResult, const float* tabX, size_t nbElement); |
1 |
#endif
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
/*************************************** Auteur : Pierre Aubert Mail : aubertp7@gmail.com Licence : CeCILL-C ****************************************/ #ifndef __FUNCTION_BASE_H__ #define __FUNCTION_BASE_H__ #include <iostream> void function_base(float* tabResult, const float* tabX, size_t nbElement); #endif |
Previous Appel de fonction classique |
Parent Appel de fonction classique |
Outline | Next Le fichier source |