123456789101112131415161718192021222324252627282930 |
- #ifndef TRANSFORM_H_INCLUDED
- #define TRANSFORM_H_INCLUDED
- #include <iostream>
- #include <string>
- #include <SDL/SDL.h>
- #undef main
- #include <SDL/SDL_ttf.h>
- SDL_Surface* transform(std::string const chaine, int const taille, SDL_Color couleur);
- SDL_Surface* transform(std::string const chaine, int const taille);
- SDL_Surface* transform(std::string const chaine);
- std::string convertirEntierEnCaracteres(int numero);
- #endif
|