代码搜索结果

找到约 10,000 项符合 W 的代码

w_wrap.c

/* +++Date last modified: 05-Jul-1997 */ /* w_wrap.c */ /* ** This is an attempt at a useful word-wrap function. It is given an array ** of characters ( a string ) and it modifies the strin

makefile.w32

# +++Date last modified: 05-Jul-1997 # Makefile for WATCOM C/C++ for 32-bit DOS 10.0 all: qmenu32.exe COPTS=-oneatx .c.obj: wcl386 $(COPTS) -zq -wx -c $< objs=qmenu.obj \ vi

w_wrap.h

/* +++Date last modified: 05-Jul-1997 */ /* w_wrap.h */ /* prototypes for the functions in w_wrap.c */ #ifndef W_WRAP__H #define W_WRAP__H #include /* For size_t */ #inc

makefile.w16

# +++Date last modified: 05-Jul-1997 # Makefile for WATCOM C/C++ for 16-bit DOS 10.0 all: qmenu.exe COPTS=-oneatx .c.obj: wcl $(COPTS) -zq -wx -c $< objs=qmenu.obj \ vidmgr.

w_wrap.c

/* w_wrap.c */ /* ** This is an attempt at a useful word-wrap function. It is given an array ** of characters ( a string ) and it modifies the string, replacing any ** new-lines found with s

w_wrap.h

/* w_wrap.h */ /* prototypes for the functions in w_wrap.c */ char *word_wrap(char *string, size_t line_len); void set_tab_size(size_t size);