Please use GitHub pull requests for new patches. Phabricator shutdown timeline
Changeset View
Changeset View
Standalone View
Standalone View
flang/include/flang/Runtime/command.h
Show All 22 Lines | |||||
// integer kind. | // integer kind. | ||||
std::int32_t RTNAME(ArgumentCount)(); | std::int32_t RTNAME(ArgumentCount)(); | ||||
// 16.9.82 GET_COMMAND | // 16.9.82 GET_COMMAND | ||||
// Try to get the value of the whole command. All of the parameters are | // Try to get the value of the whole command. All of the parameters are | ||||
// optional. | // optional. | ||||
// Return a STATUS as described in the standard. | // Return a STATUS as described in the standard. | ||||
std::int32_t RTNAME(GetCommand)(const Descriptor *command = nullptr, | std::int32_t RTNAME(GetCommand)(const Descriptor *command = nullptr, | ||||
const Descriptor *length = nullptr, const Descriptor *errmsg = nullptr); | const Descriptor *length = nullptr, const Descriptor *errmsg = nullptr, | ||||
const char *sourceFile = nullptr, int line = 0); | |||||
// 16.9.83 GET_COMMAND_ARGUMENT | // 16.9.83 GET_COMMAND_ARGUMENT | ||||
// We're breaking up the interface into several different functions, since most | // We're breaking up the interface into several different functions, since most | ||||
// of the parameters are optional. | // of the parameters are optional. | ||||
// Try to get the value of the n'th argument. | // Try to get the value of the n'th argument. | ||||
// Returns a STATUS as described in the standard. | // Returns a STATUS as described in the standard. | ||||
std::int32_t RTNAME(ArgumentValue)( | std::int32_t RTNAME(ArgumentValue)( | ||||
Show All 25 Lines |