the problem with media players

sâmbătă, 21 iun. 2008, 17:21

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.

Publicat de în wtf, , ,

Comments

  • spyked spune:

    Don’t try that at home. Codul cu siguranţă nu funcţionează 😛 .

  • BusterDBK spune:

    section .data
    message: db ‘Damn!’
    messageLen: equ $-message

    section .text
    global _start

    _start:
    mov eax,4
    mov ebx,1
    mov ecx,message
    mov edx,messageLen
    int 80h ;hello kernel, can you hear me?

    mov eax,1
    mov ebx,0
    int 80h

    Nici asta nu va rezolva problema, dar va exprima si punctul meu de vedere. 😉

  • spyked spune:

    Nţ. Ce cod maliţios vrei tu să manipuleze registrele alea, măi?

    You evil one. Totuşi, nu e mai evil decât a scrie ciclurile alea două în asm.

  • BusterDBK spune:

    Hey totusi de ce nu scriem noi un patch pentru asta?

  • spyked spune:

    Neah, pentru rezolvarea tag-urilor prefer easyTAG. Îşi face treaba perfect; o să las playerele să se ocupe de redarea muzicii.

  • Comentariile sunt dezactivate.