modif.h

来自「一个非常实用的密码破解源码。该实例代码采用c语言编写」· C头文件 代码 · 共 49 行

H
49
字号
/*--------------------------------------------------------*//* Copyright (c) PSW-soft 1996                            *//*                                                        *//* File:     RUS.H                                        *//*                                                        *//* Project:  Password Cracking Library                    *//* Version:  1.0                                          *//*                                                        *//* Author:   Pavel Semjanov                               *//* Company:  PSW-soft                                     *//*                                                        *//* Comment:  Russification header file                    *//*                                                        *//* Create:   06.08.1996 21:39:20                          *//* Update:   11.08.1996 14:54:28                          *//*                                                        *//* Revision: 1.0   06.08.1996 21:39:20 Initial revision   *//*           (implemented in cRARk 1.5)                   *//*--------------------------------------------------------*/#include "maindef.h"#ifdef __cplusplusextern "C" {#endif/*  Russian key - codes */#define rtoupper(c) (U_TOUPPER[(unsigned char)(c)])#define rtolower(c) (U_TOLOWER[(unsigned char)(c)])#define isrvowel(c)  (strchr (U_VOWELS, (c)))char *strrtoupper  (char *, int16);char *strrtolower  (char *, int16);char *strduplicate (char *, int16);char *strrtocool   (char *, int16);char *strrshrink   (char *, int16);char *strconvert   (char *, int16);char *strrevm      (char *, int16);char *strcut       (char *, int16);#ifdef __cplusplus}#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?