/[public]/psiconv/trunk/lib/psiconv/list.c
ViewVC logotype

Diff of /psiconv/trunk/lib/psiconv/list.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 55 Revision 56
24#include <stdio.h> 24#include <stdio.h>
25#include "list.h" 25#include "list.h"
26 26
27static void psiconv_list_resize(psiconv_list l,unsigned int nr); 27static void psiconv_list_resize(psiconv_list l,unsigned int nr);
28 28
29struct psiconv_list { 29struct psiconv_list_s {
30 int cur_len; 30 int cur_len;
31 int max_len; 31 int max_len;
32 int el_size; 32 int el_size;
33 void *els; 33 void *els;
34}; 34};

Legend:
Removed from v.55  
changed lines
  Added in v.56

frodo@frodo.looijaard.name
ViewVC Help
Powered by ViewVC 1.1.26