gui_getstringdistx.c

来自「uCGUI」· C语言 代码 · 共 21 行

C
21
字号
/*************************************************************************************************************
                                                   uC/GUI
                                               嵌入式通用图形软件
File        : GUI_GetStringDistX.C
Purpose     : Implementation of optional routine
************************************************************************************************************/
#include <stddef.h>           /* needed for definition of NULL */
#include <stdio.h>
#include <string.h>
#include "GUI_Protected.H"


int GUI_GetStringDistX(const char GUI_FAR *s) 
{
  return GUI_GetLineDistX(s, strlen(s));
}




⌨️ 快捷键说明

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