Skip to content

Commit

Permalink
hds: Normalize hds include file
Browse files Browse the repository at this point in the history
To make it easier to generate the wrapper the HDS include file
format has changed from:

int
datFunc(type1 var1,
        type2 var2,
        int * status );

to

int
datFunc(type1 var1, type2 var, int *status);

Used a simple script:

cat /star/include/star/hds.h | perl -n -e 'chomp; s/\s*$//; s/^\s+//; s/\s+/ /g unless /^[\/\#]/; print $_.( $_ =~ /,$/ ? " " : "\n")'
  • Loading branch information
timj committed Oct 31, 2014
1 parent 246a01f commit 8766774
Showing 1 changed file with 136 additions and 565 deletions.

0 comments on commit 8766774

Please sign in to comment.