| 1 | /********************************************************************************** |
| 2 | * . |
| 3 | * |
| 4 | * |
| 5 | ************************************************** |
| 6 | * This code was created by Peter Harvey @ CodeByDesign. |
| 7 | * Released under LGPL 28.JAN.99 |
| 8 | * |
| 9 | * Contributions from... |
| 10 | * ----------------------------------------------- |
| 11 | * Peter Harvey - pharvey@codebydesign.com |
| 12 | **************************************************/ |
| 13 | |
| 14 | #include <config.h> |
| 15 | #include "ini.h" |
| 16 | |
| 17 | int iniToUpper( char *pszString ) |
| 18 | { |
| 19 | int n = 0; |
| 20 | |
| 21 | for ( n = 0; pszString[n] != '\0'; n++ ) |
| 22 | pszString[n] = toupper((unsigned char)pszString[n]); |
| 23 | |
| 24 | return INI_SUCCESS; |
| 25 | } |
| 26 | |
| 27 | |
| 28 | |