The function returns 'zero' for any given input string, except when the input is 'c', in which case it returns 'one'.
[CODE]:
```python
def f(x):
    if x == 'c':
        return 'one'
    else:
        return 'zero'
```
