独一无二114 发表于 2015-6-20 15:48:28

hook printf

#include<stdio.h>
max(int a)
{
        printf("%d",a);
}
printf(int a,void(* max)(int))
{
        if(a=3)
        {
                printf("456789");
        }
        else
        {
                max(a);
        }
}
void main()
{
        printf(3,&max);
}
页: [1]
查看完整版本: hook printf