The function returns 'one' if the input is 'tree' or 't', and returns 'zero' for any other input.

[CODE]:
```python
def approx_function(input_string):
    if input_string == 'tree' or input_string == 't':
        return 'one'
    else:
        return 'zero'
```