/
| 872 | |
| 873 | /*****************************************************************************/ |
| 874 | static int accept(const char *args) { |
| 875 | /***************************************************************************** |
| 876 | Read ("ACCEPT") a 2, 3, or 4 dimensional input coordinate. |
| 877 | ******************************************************************************/ |
| 878 | T.a = parse_coord(args); |
| 879 | if (T.verbosity > 3) |
| 880 | fprintf(T.fout, "# %s\n", args); |
| 881 | T.dimensions_given_at_last_accept = T.dimensions_given; |
| 882 | return 0; |
| 883 | } |
| 884 | |
| 885 | /*****************************************************************************/ |
| 886 | static int roundtrip(const char *args) { |
no test coverage detected