Changeset 11199
- Timestamp:
- 01/25/12 09:23:07 (13 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/EnumDefinitions/EnumDefinitions.h
r11192 r11199 471 471 472 472 /*Functions on enums: */ 473 c har *EnumToModelField(int en);473 const char *EnumToModelField(int en); 474 474 475 475 #endif -
issm/trunk-jpl/src/c/EnumDefinitions/EnumToModelField.cpp
r9681 r11199 9 9 #include "./EnumDefinitions.h" 10 10 11 c har* EnumToModelField(int en){11 const char* EnumToModelField(int en){ 12 12 13 13 switch(en){ -
issm/trunk-jpl/src/c/io/PrintfFunction.cpp
r9761 r11199 13 13 #endif 14 14 15 int PrintfFunction(c har* format,...){15 int PrintfFunction(const char* format,...){ 16 16 /*http://linux.die.net/man/3/vsnprintf*/ 17 17 -
issm/trunk-jpl/src/c/io/io.h
r9761 r11199 20 20 21 21 /*printf: */ 22 int PrintfFunction(c har* format,...);22 int PrintfFunction(const char* format,...); 23 23 24 24 #endif /* _IO_H_ */ -
issm/trunk-jpl/src/c/shared/Exceptions/exceptions.h
r3332 r11199 34 34 }; 35 35 36 char* exprintf(c har* format,...);36 char* exprintf(const char* format,...); 37 37 #endif -
issm/trunk-jpl/src/c/shared/Exceptions/exprintf.cpp
r9320 r11199 11 11 #include "../Alloc/alloc.h" 12 12 13 char* exprintf(c har* format,...){13 char* exprintf(const char* format,...){ 14 14 15 15 /*returned string: */
Note:
See TracChangeset
for help on using the changeset viewer.