pagsca.h Aggiunta data del pagamento git-svn-id: svn://10.65.10.50/trunk@1819 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			10 lines
		
	
	
		
			144 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			144 B
		
	
	
	
		
			C
		
	
	
		
			Executable File
		
	
	
	
	
#include <ctype.h>
 | 
						|
 | 
						|
char* CUpString(char* s)
 | 
						|
{                 
 | 
						|
  char* c;
 | 
						|
  for (c = s; *c; c++) 
 | 
						|
    *c = toupper(*c);
 | 
						|
  return s;
 | 
						|
}
 |