e.g for a function search(string a , int b, int c) in the new library the function looks like
search(int c, int b, string a).
we have a app using older library with the params sequence shown in the first example. this change will need the app to refactor all the functions.
is there any way of going back to the original sequence of params ?
Thanks.