1
0
Fork 0
mirror of git://git.code.sf.net/p/cdesktopenv/code synced 2025-03-09 15:50:02 +00:00

Fix 80 typos in comments

(cherry picked from commit 7dca902a85dc02e5df66f0f45a00d1575e7a0220)
This commit is contained in:
Martijn Dekker 2020-03-01 16:52:45 +01:00
parent 53443bb981
commit 39a14c1000
58 changed files with 80 additions and 80 deletions

View file

@ -143,7 +143,7 @@ struct _dtdisc_s
struct _dt_s
{ Dtsearch_f searchf;/* search function */
Dtdisc_t* disc; /* object type definitition */
Dtdata_t* data; /* sharable data */
Dtdata_t* data; /* shareable data */
Dtmemory_f memoryf;/* for memory allocation */
Dtmethod_t* meth; /* storage method */
ssize_t nview; /* #parent view dictionaries */
@ -175,8 +175,8 @@ struct _dtstat_s
#define DT_STACK 0000000040 /* stack: insert/delete at top */
#define DT_QUEUE 0000000100 /* queue: insert top, delete at tail */
#define DT_DEQUE 0000000200 /* deque: insert top, append at tail */
#define DT_RHSET 0000000400 /* rhset: sharable unique objects */
#define DT_RHBAG 0000001000 /* rhbag: sharable repeated objects */
#define DT_RHSET 0000000400 /* rhset: shareable unique objects */
#define DT_RHBAG 0000001000 /* rhbag: shareable repeated objects */
#define DT_METHODS 0000001777 /* all currently supported methods */
#define DT_ORDERED (DT_OSET|DT_OBAG)

View file

@ -69,7 +69,7 @@ typedef struct Opt_s
char name[64]; /* current long name or flag */
Optdisc_t* disc; /* user discipline */
intmax_t number; /* # numeric argument */
unsigned char assignment; /* option arg assigment op */
unsigned char assignment; /* option arg assignment op */
unsigned char pads[sizeof(void*)-1];
_OPT_PRIVATE_
} Opt_t;

View file

@ -24,7 +24,7 @@
* Glenn Fowler
* AT&T Research
*
* homogenous stack routine definitions
* homogeneous stack routine definitions
*/
#ifndef _STACK_H

View file

@ -91,7 +91,7 @@ struct _vmalloc_s
#define VM_TRACE 0000001 /* generate traces of calls */
#define VM_DBCHECK 0000002 /* check for boundary overwrite */
#define VM_DBABORT 0000004 /* abort on any warning */
#define VM_SHARE 0000010 /* sharable across processes */
#define VM_SHARE 0000010 /* shareable across processes */
#define VM_MEMORYF 0000020 /* vm was allocated by memoryf */
#define VM_FLAGS 0000017 /* user-settable flags */