summaryrefslogtreecommitdiff
path: root/include/f_pc/f_pc_method_iter.h
blob: 94e77c24d85e0806e1d88defacedb574a5d0d2ff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

#ifndef F_PC_METHOD_ITER_H_
#define F_PC_METHOD_ITER_H_

#include <types.h>

typedef struct node_list_class node_list_class;

typedef int (*fpcMtdIt_MethodFunc)(void*);

int fpcMtdIt_Method(node_list_class* pList, fpcMtdIt_MethodFunc pMethod);

#endif