Home
last modified time | relevance | path

Searched refs:ADV_COM_ARG_LEN (Results 1 – 2 of 2) sorted by last modified time

/dports/audio/harp/harp-0.6.0/
H A Dplayer.c474 for(x=2;x<ADV_COM_ARG_LEN && com[x] && com[x]==' ';x++); in remitem()
475 if(getGroupSongIDs(com+x,ADV_COM_ARG_LEN,&id_struct)==HARP_RET_ERR) in remitem()
498 for(x=2;x<ADV_COM_ARG_LEN && com[x] && com[x]==' ';x++); in additem()
503 for(;x<ADV_COM_ARG_LEN && com[x] && com[x]>='0' && com[x]<='9';x++); in additem()
506 for(;x<ADV_COM_ARG_LEN && com[x] && com[x]==' ';x++); in additem()
508 if(getGroupSongIDs(com+x,ADV_COM_ARG_LEN,&id_struct)==HARP_RET_ERR) in additem()
548 char *ptr,com[ADV_COM_ARG_LEN]; in getCommand()
553 bzero(com,ADV_COM_ARG_LEN); in getCommand()
565 if(fgets(com,ADV_COM_ARG_LEN,stdin)){ in getCommand()
568 for(x=0;x<ADV_COM_ARG_LEN && com[x]!='\n' && com[x];x++); in getCommand()
[all …]
H A Dplayer.h24 #define ADV_COM_ARG_LEN (50) macro