Home | History | Annotate | Download | only in examples

Lines Matching refs:ptitle

164 int sendtrack_function(char * from_path, char * to_path, char *partist, char *palbumartist, char *ptitle, char *pgenre, char *palbum, char *pcomposer, uint16_t tracknum, uint16_t length, uint16_t year, uint32_t storageid)
201 if (ptitle == NULL) {
202 ptitle = prompt("Title", title, 80, 0);
204 if (!strlen(ptitle))
205 ptitle = NULL;
269 if (ptitle) {
270 printf("Title: %s\n", ptitle);
271 trackmeta->title = strdup(ptitle);
379 char *ptitle = NULL;
391 ptitle = strdup(optarg);
441 printf("%s,%s,%s,%s,%s,%s,%s,%s,%d%d,%d,%u\n",argv[0],argv[1],partist,palbumartist,ptitle,pgenre,palbum,pcomposer,tracknum, length, year, storageid);
442 sendtrack_function(argv[0],argv[1],partist,palbumartist,ptitle,pgenre,palbum,pcomposer, tracknum, length, year, storageid);