You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

Cintface.c 263 B

123456789101112131415161718192021
  1. #include <stdio.h>
  2. void c_intface_(int *i)
  3. {
  4. fprintf(stdout, "ADD_\n");
  5. }
  6. void c_intface(int *i)
  7. {
  8. fprintf(stdout, "NOCHANGE\n");
  9. }
  10. void c_intface__(int *i)
  11. {
  12. fprintf(stdout, "f77IsF2C\n");
  13. }
  14. void C_INTFACE(int *i)
  15. {
  16. fprintf(stdout, "UPPER\n");
  17. }