1

was wondering if an Equivalent of PHP's stripslashes() in C existed?

Haim Evgi
  • 123,187
  • 45
  • 217
  • 223

1 Answers1

3

No, because this is not a problem that is usually encountered in C. If you want the same functionality then you will need to write it yourself, or find some library that provides it.

Ignacio Vazquez-Abrams
  • 776,304
  • 153
  • 1,341
  • 1,358