memmove implementation in C

后端 未结 3 487
借酒劲吻你
借酒劲吻你 2020-12-13 07:37

Can some one help me to understand how memmove is implemented in C. I have only one special condition right ?

if((src dst))
         


        
3条回答
  •  醉梦人生
    2020-12-13 08:30

    Depends on the compiler. Good compilers will use good optimizations dependent on the target processor instruction set and bus width.

提交回复
热议问题