I've been converting Fortran code to C++. However, I hit another road block. I'm not sure what the following is doing:
1. Not sure what the last line in the following declaration does:
2.There is a function named ssenum. Not sure how the following code relates to the function/what its doing:
1. Not sure what the last line in the following declaration does:
Code:
parameter(maxhead=1000)
integer *4 sl
parameter (sl=10)
character *(sl)psource(maxhead)
2.There is a function named ssenum. Not sure how the following code relates to the function/what its doing:
Code:
functn=ssenum('Ro ')
return
functn=ssenum('RC(=O)0 ')
return
functn=ssenum('R{O}C(=O)0 ')
return