nasm astrchr函数 x86
xxx.asm:
%define p1 ebp+8
%define p2 ebp+12
%define p3 ebp+16
section .text
  global dllmain
  export astrchr
dllmain:
  mov eax,1
  ret 12
astrchr:
  push ebp
  mov ebp,esp
  mov eax,[p1]	; char ptr
  mov ecx,[p2]	; char
  .for:
  ;-------------------------------------------;
  ;   找到后返回第一次出现的指针
  ;-------------------------------------------;
  cmp [eax],cl
  je .return
  inc eax
  ;-------------------------------------------;
  ;   如果找不到该字符,则该函数返回空指针
  ;-------------------------------------------;
  cmp byte [eax],0
  je .error
  jmp .for
  .error:
  xor eax,eax
  .return:
  mov esp,ebp
  pop ebp
  ret 8
c++:
#include <iostream>
#include <Windows.h>
typedef char*(CALLBACK* astrchr_t)(const char* str, int character);
astrchr_t astrchr;
int main()
{
  HMODULE myDLL = LoadLibraryA("xxx.dll");
  astrchr = (astrchr_t)GetProcAddress(myDLL, "astrchr");
  char str[] = "hello world";
  char* pch = strchr(str, 'l');
  printf("%s\n", pch); // llo world
  char* pch2 = astrchr(str, 'l');
  printf("%s\n", pch2); // llo world
  //==============================//
  char* pch3 = strchr(str, 'b');
  printf("%s\n", pch3); // (null)
  char* pch4 = astrchr(str, 'b');
  printf("%s\n", pch4); // (null)
  return 0;
}
nasm astrchr函数 x86的更多相关文章
- nasm astrspn函数 x86
		xxx.asm %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export ast ... 
- nasm astrcspn函数 x86
		xxx.asm %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export ast ... 
- nasm astrlen函数 x86
		xxx.asm %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export ast ... 
- nasm aat函数 x86
		xxx.asm: %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain dllmain: ... 
- nasm astrstr函数 x86
		xxx.asm: %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export as ... 
- nasm astrset_s函数 x86
		xxx.asm %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export ast ... 
- nasm astrrev函数 x86
		xxx.asm %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export ast ... 
- nasm astrrchr函数 x86
		xxx.asm %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export ast ... 
- nasm astrncmp函数 x86
		xxx.asm: %define p1 ebp+8 %define p2 ebp+12 %define p3 ebp+16 section .text global dllmain export as ... 
随机推荐
- Shell 简单入门教程
			大数据开发岗为什么要学习Shell呢?1)需要看懂大数据运维岗人员编写的Shell程序.2)偶尔会编写一些简单Shell程序来管理集群.提高开发效率 艺多不压身 Shell是一个命令行解释器,它接受应 ... 
- URL重定向漏洞解析
			参考文章 悟空云课堂 | 第二期:URL重定向(跳转)漏洞 CWE-601: URL Redirection to Untrusted Site ('Open Redirect') 分享几个绕过URL ... 
- 谁再把IDEA的Project比作Eclipse的Workspace,我就跟谁急
			前言 你好,我是A哥(YourBatman). 有一个观点:若一个Java开发者能把IDEA玩得666,则技术一定不会差:但若玩不转IDEA(如不会设置.定制.解决日常问题.快捷键等等),那大概率水平 ... 
- Redis 实战 —— 12. 降低内存占用
			简介 降低 Redis 的内存占用有助于减少创建快照和加载快照所需的时间.提升载入 AOF 文件和重写 AOF 文件时的效率.缩短从服务器进行同步所需的时间(快照. AOF 文件重写在 持久化选项 中 ... 
- Kubernetes (yaml 文件详解)
			# yaml格式的pod定义文件完整内容:apiVersion: v1 #必选,版本号,例如v1kind: Pod #必选,Podmetadata: #必选,元数据 ... 
- Centos7 安装RabbitMQ 3.6.1
			如果你看过前两章对RabbitMQ已经有了一定了解,现在已经摩拳擦掌,来吧动手吧! 用什么系统 本文使用的是Centos7,为了保证对linux不太熟悉的伙伴也能轻松上手(避免折在安装的路上),下面是 ... 
- 第2层交换和生成树协议(STP)__第2层的3种交换功能
			地址学习(Address Learning):第2层交换机和网桥能够记住在一个接口上所收到的每个帧的源设备硬件地址,而且它们会将这个硬件地址信息输入到被称为转发/过滤表的MAC数据库中. 转发/过滤决 ... 
- 给jekyll博客添加搜索功能
			使用SWIFTYPE为jekyll博客添加搜索引擎 步骤 1.首先去swiftype注册一个账号 2.接着添加自己想要配置的网站地址并为新设定的引擎添加一个名字(非会员只能设置一个引擎). 3.收到验 ... 
- impala支持的数据库里的double(float)类型,通过迁移inceptor后,类型的值都变成了null
			impala支持的数据库里的double(float)类型,通过迁移inceptor后,double类型的值都变成了null. 通过查阅日志发现默认将double转换成Decimal(38,10)然而 ... 
- Hyperbase数据迁移
			原老集群有100台服务器,新增90台服务器和原来的服务器构成新Hyperbase集群最初考虑有两种方案distcp和snapshot,由于distcp进行数据迁移时不在HBase本身控制范围内,故选用 ... 
