]> git.vpit.fr Git - perl/modules/Sub-Op.git/blob - sub_op.h
Initial commit
[perl/modules/Sub-Op.git] / sub_op.h
1 /* This file is part of the Sub::Op Perl module.
2  * See http://search.cpan.org/dist/Sub-Op/ */
3
4 #ifndef SUB_OP_H
5 #define SUB_OP_H 1
6
7 typedef struct {
8  const char   *name;
9  STRLEN        len;
10  Perl_ppaddr_t pp;
11  void        (*check)(pTHX_ OP *);
12 } sub_op_keyword;
13
14 void sub_op_register(pTHX_ const sub_op_keyword *k);
15
16 #endif /* SUB_OP_H */