sS str_shorten(O o) {
  ret shorten_str(o);
}



sS str_shorten(O o, int max) {
  ret shorten_str(o, max);
}



sS str_shorten(int max, O o) {
  ret shorten_str(max, o);
}