Call Julia function with keywords from C++

The only very dirty workaround I could think was to create a dummy function like:

teste_dummy(a,b,c) = teste(a,b;c=c)

Is it really the only way?