| 105 |
|
|
| 106 |
Private Function readSwitch(arg As String) As String |
Private Function readSwitch(arg As String) As String |
| 107 |
If (Left(arg, 2) = "--") Then |
If (Left(arg, 2) = "--") Then |
| 108 |
readSwitch = LCase(Mid(arg, 3)) |
readSwitch = Mid(arg, 3) |
| 109 |
End If |
End If |
| 110 |
End Function |
End Function |
| 111 |
|
|
| 112 |
Private Function readArgument(arg As String) As String |
Private Function readArgument(arg As String) As String |
| 113 |
If (Left(arg, 2) <> "--") Then |
If (Left(arg, 2) <> "--") Then |
| 114 |
readArgument = LCase(arg) |
readArgument = arg |
| 115 |
End If |
End If |
| 116 |
End Function |
End Function |
| 117 |
|
|