Chinaunix首页 | 论坛 | 博客
  • 博客访问: 668060
  • 博文数量: 160
  • 博客积分: 2384
  • 博客等级: 大尉
  • 技术积分: 1366
  • 用 户 组: 普通用户
  • 注册时间: 2008-12-01 11:35
文章分类
文章存档

2015年(45)

2014年(36)

2012年(28)

2011年(37)

2010年(2)

2009年(10)

2008年(2)

分类: C/C++

2014-11-04 23:39:57

//

//  main.cpp

//  AUTO_PRO

//

//  Created by yanzhengqing on 12-12-11.

//  Copyright (c) 2012 yanzhengqing. All rights reserved.

//


#include 

using namespace std;

/***

 *char *memchr(buf, chr, cnt) - search memory for given character.

 *

 *Purpose:

 *       Searches at buf for the given character, stopping when chr is

 *       first found or cnt bytes have been searched through.

 *

 *Entry:

 *       void *buf  - memory buffer to be searched

 *       int chr    - character to search for

 *       size_t cnt - max number of bytes to search

 *

 *Exit:

 *       returns pointer to first occurence of chr in buf

 *       returns NULL if chr not found in the first cnt bytes

 *

 *Exceptions:

 *

 *******************************************************************************/



/////////////////////////////////////////////////////////////////////////////////

/*说明:

  1. __cdecl C Declaration的缩写(declaration,声明),表示C语言默认的函数调用方法:所有参数从右到左依次入栈,这些参数由调用者清除,称为手动清栈。被调用函数不会要求调用者传递多少参数,调用者传递过多或者过少的参数,甚至完全不同的参数都不会产生编译阶段的错误。

  2.  在从s开始的n个字节内查找c第一次出现的地址并返回,若未找到则返回NULL

  3.  按照ANSI(American National Standards Institute)标准,不能对void指针进行算法操作,即不能对void指针进行如p++的操作,所以需要转换为具体的类型指针来操作,例如char *。(引用网友的结论)

  4.  size_t 类型定义在cstddef头文件中,该文件是C标准库的头文件stddef.hC++版。它是一个与机器相关的unsigned类型,其大小足以保证存储内存中对象的大小。

*/


void * __cdecl memchr (

                       const void * buf,

                       char chr,

                       size_t cnt

                       )

{

    while ( cnt && (*(unsigned char *)buf != (unsigned char)chr) ) {

        buf = (unsigned char *)buf + 1;

        cnt--;

    }

    

    return(cnt ? (void *)buf : NULL);

}


int main()

{

    void *p = NULL;

    const char src[50] = "blog.csdn.net/barry_yan";

    p = memchr(src,'y',strlen(src));

    if(p != NULL)

    {

       cout << (char*)p << endl;

    }

    else

    {

        cout<<"NULL"<<endl;

    }

    return 0;

}

阅读(444) | 评论(0) | 转发(0) |
0

上一篇:string - memcmp源码

下一篇:string - memmove源码

给主人留下些什么吧!~~