{
  "synLogic": "char* $ret \u003d $api($1, $2, $3);",
  "help": "The ns_ebcdic_to_ascii converts buffer data from EBCDIC format to ASCII format",
  "notes": "",
  "returns": "char *",
  "arguments": "\u003ctable class\u003d\"newGuiTable\" style\u003d\"width:100%\" \u003e \u003ctr\u003e \u003cth\u003e Argument \u003c/th\u003e \u003cth\u003e Description \u003c/th\u003e \u003c/tr\u003e \u003ctr\u003e \u003ctd\u003e EBCDIC Input \u003c/td\u003e \u003ctd\u003e A pointer to the input buffer containing data in EBCDIC format. \u003c/td\u003e \u003c/tr\u003e  \u003ctr\u003e \u003ctd\u003e EBCDIC Length \u003c/td\u003e \u003ctd\u003e An integer value representing the length of the EBCDIC input buffer in bytes. \u003c/td\u003e \u003c/tr\u003e \u003ctr\u003e  \u003ctd\u003e Converted Data Length \u003c/td\u003e  \u003ctd\u003e A pointer to an integer value, which will be updated with the length of the converted ASCII data. \u003c/td\u003e \u003c/tr\u003e \u003c/table\u003e",
  "parameterization": "",
  "name": "ns_ebcdic_to_ascii",
  "syntax": "char* ns_ebcdic_to_ascii(char *ebcdic_input, int ebcdic_len, int *con_len)",
  "javaSyntax": "",
  "cEx": "flow()\n{\n  char *ebcdic_data = // EBCDIC formatted data\n  int ebcdic_len = 100;\n\n  // Pointer to store length of converted data\n  int con_len;\n\n  // Convert EBCDIC data to ASCII format\n  char *ascii_data = ns_ebcdic_to_ascii(ebcdic_data, ebcdic_len, &con_len);\n\n  // Print the converted data\n  printf(\"Converted ASCII data: %s\", ascii_data);\n}",
  "javaEx": "",
  "insertStrC": "*ns_ebcdic_to_ascii(char *ebcdic_input, int ebcdic_len, int *con_len);",
  "insertStrJava": "",
  "description": "The ns_ebcdic_to_ascii converts buffer data from EBCDIC format to ASCII format",
  "component": [
    {
      "id": "$1",
      "type": "TextField",
      "label": "EBCDIC Input",
      "labelVarCheckbox": "",
      "value": "",
      "css": "p-grid p-align-center w-100-p",
      "title": "Enter EBCDIC Input",
      "placeHolder": "",
      "style": "",
      "isDisabled": "",
      "validate": {
        "inputType": "Text",
        "required": true
      }
    },
	{
      "id": "$2",
      "type": "TextField",
      "label": "EBCDIC Length",
      "labelVarCheckbox": "",
      "value": "",
      "css": "p-grid p-align-center w-100-p",
      "title": "Enter EBCDIC Length",
      "placeHolder": "",
      "style": "",
      "isDisabled": "",
      "validate": {
        "inputType": "Number",
        "required": true,
        "min": "0",
        "max": "2147483647"
      }
    },
	{
      "id": "$3",
      "type": "TextField",
      "label": "Con Length",
      "labelVarCheckbox": "",
      "value": "",
      "css": "p-grid p-align-center w-100-p",
      "title": "Enter Con Length",
      "placeHolder": "",
      "style": "",
      "isDisabled": "",
      "validate": {
        "inputType": "Number",
        "required": true,
        "min": "0",
        "max": "2147483647"
      }
    },
	{
      "id": "$ret",
      "type": "TextField",
      "label": "Return Variable",
      "labelVarCheckbox": "",
      "value": "",
      "css": "p-grid p-align-center w-100-p",
      "title": "Enter return variable",
      "placeHolder": "",
      "style": "",
      "isDisabled": "",
      "validate": {
        "inputType": "Text",
        "required": false,
        "method": "isValidVar(arg)"
      }
    }
  ]
}