Forward compatibility: flex
[foam-extend-3.2.git] / applications / utilities / postProcessing / graphics / newEnsightFoamReader / USERD_get_descrip_lines.H
blobea8445fd0c243b7508614446f039358f05835ea8
1 //======================================================================
2 int USERD_get_descrip_lines
4     int which_type,
5     int which_var,
6     int imag_data,
7     char line1[Z_BUFL],
8     char line2[Z_BUFL]
11 #ifdef ENSIGHTDEBUG
12     Info << "Entering: USERD_get_descrip_lines" << endl
13         << flush;
14 #endif
16     if (which_type == Z_GEOM)
17     {
18         strncpy(line1, meshName, Z_BUFL);
19         strncpy(line2, "", Z_BUFL);
20     }
21     else
22     {
23         strncpy(line1, "WHERE IS THIS LINE USED I WONDER???", Z_BUFL);
24     }
26 #ifdef ENSIGHTDEBUG
27     Info << "Leaving: USERD_get_descrip_lines" << endl
28         << flush;
29 #endif
30     return Z_OK;