the problem with media players

by spyked

is that none of them implement a tolower function:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "ctype .h"
 
void fixthedamnuppercaseproblem (List s)
{
    int i,j;
    char **p = s.getList();
    for (i=0;i<s .getLength();i++)
    {
          for (j=0;j<strlen(p[i]);j++)
          {
                  p[i][j]=tolower(p[i][j]);
          }
    }
    s.writeListToFile(p); /*wish that worked */
}

Sper să pot să fac un review pentru Banshee cât mai curând.