{
  "synLogic": "char* $ret \u003d $api($1, $2);",
  "help": "The ns_decode_url un - escapes URL encoding in strings (converts all %XX codes to their 8bit versions)",
  "notes": "",
  "returns": "char *",
  "arguments": "string : the string  to format\nlen length of the string",
  "parameterization": "You cannot use standard parameterization for any arguments in this function.",
  "name": "ns_decode_url",
  "syntax": "char* ns_decode_url(const char *string, int length)",
  "javaSyntax": "char* ns_decode_url(const char *string, int length)",
  "cEx": "flow()\n{\n  char* decodedUrl ;\n  decodedUrl \u003d ns_encode_url(urlStr, len);\n  printf(?%s?,decodedUrl);\n}",
  "javaEx": "flow()\n{\n  char* decodedUrl ;\n  decodedUrl \u003d ns_encode_url(urlStr, len);\n  printf(?%s?,decodedUrl);\n}",
  "insertStrC": "*ns_decode_url(const char *string, int length);",
  "insertStrJava": "*ns_decode_url(const char *string, int length);",
  "description": "The ns_decode_url un - escapes URL encoding in strings (converts all %XX codes to their 8bit versions)",
  "component": [
    {
      "id": "$1",
      "type": "TextField",
      "label": "String",
      "labelVarCheckbox": "",
      "value": "",
      "css": "p-grid p-align-center w-100-p",
      "title": "Enter String",
      "placeHolder": "",
      "style": "",
      "isDisabled": "",
      "validate": {
        "inputType": "Text",
        "required": true
      }
    },
	{
      "id": "$2",
      "type": "TextField",
      "label": "Length",
      "labelVarCheckbox": "",
      "value": "",
      "css": "p-grid p-align-center w-100-p",
      "title": "Enter Length",
      "placeHolder": "",
      "style": "",
      "isDisabled": "",
      "validate": {
        "inputType": "Number",
        "required": true,
        "min": "0",
        "max": "2147483647"
      }
    },
	{
      "id": "$ret",
      "type": "TextField",
      "label": "Return Variable",
      "value": "",
      "css": "p-grid p-align-center w-100-p",
      "title": "Enter Return Variable",
      "placeHolder": "",
      "style": "",
      "isDisabled": "",
      "labelVarCheckbox": "",
      "argIndex": 0,
	  "title": "First character must be Alpha.\r\nOther characters are Alpha, Numeric or Underscore",
      "validate": {
        "inputType": "Text",
		"pattern": "^[a-zA-Z][a-zA-Z0-9_]{0,63}$",
        "disabled": false,
        "required": false,
        "min": 0,
        "max": 0,
        "method": "isValidVar(arg)"
      }
    }
  ]
}