Advertisement
Guest User

Untitled

a guest
Feb 21st, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.29 KB | None | 0 0
  1. /*
  2.  * Vettore.h
  3.  *
  4.  *  Created on: 21 feb 2018
  5.  *      Author: Vincenzo
  6.  */
  7.  
  8. #ifndef VETTORE_H  //Header guards
  9. #define VETTORE_H
  10.  
  11. #include <string>
  12.  
  13. void leggiFrase(std::string&);
  14. void leggiAst(char&);
  15. unsigned int RicercaInFrase(const std::string&, char);
  16.  
  17.  
  18. #endif /* VETTORE_H_ */
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement