23 Feb
2008
23 Feb
'08
6:30 p.m.
hi. i am just using my free time to code with alpm and alpm_list. nothing to be published yet (or ever ?) today i just noticed that a list created with alpm_list_new has a number of element of 1 as alpm_list_count reports it: #include <stdlib.h> #include <stdio.h> #include <alpm_list.h> int main(void) { alpm_list_t *l; l = alpm_list_new(); printf("count=%d\n",alpm_list_count(l)); return(0); } $ ./test count=1 shining wanted me to post here about that. that's done !