~ubuntu-branches/ubuntu/lucid/gauche-c-wrapper/lucid

« back to all changes in this revision

Viewing changes to testsuite/fptr_array.h

  • Committer: Bazaar Package Importer
  • Author(s): NIIBE Yutaka
  • Date: 2008-04-07 09:15:03 UTC
  • Revision ID: james.westby@ubuntu.com-20080407091503-wu0h414koe95kj4i
Tags: upstream-0.5.2
ImportĀ upstreamĀ versionĀ 0.5.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
struct foo {
 
2
    int (*fptr_array[3]) (void);
 
3
    char *(*c[10])(int *p);
 
4
};
 
5
 
 
6
extern void fptr_array_set(struct foo *s);
 
7
extern int *fptr_array_test(struct foo *s, int *p);