永恒的蓝色梦想 发表于 2020-5-31 13:04:37

strrevcpy

本帖最后由 永恒的蓝色梦想 于 2020-6-12 21:47 编辑

闲着没事,写了个 strrevcpy 。
虽然说很简单,但为什么不水一贴呢?(滑稽)

代码:char* __cdecl strrevcpy(char* const _Destination, char const* const _Source) {
    if (_Destination && _Source) {
      char* to = _Destination;
      char const* from = _Source;

      while (*from) {
            ++from;
      }

      while (from-- != _Source) {
            *to++ = *from;
      }

      *to = '\0';
      return _Destination;
    }

    return 0;
}

Mike_python小 发表于 2020-5-31 19:45:03

育碧育碧

3124157115 发表于 2020-6-2 09:35:40

起飞!

lll_jh888 发表于 2020-6-3 22:20:11

{:10_275:}

拍死人 发表于 2020-6-6 08:54:30

{:10_254:}
页: [1]
查看完整版本: strrevcpy