aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/make/str.h
Commit message (Collapse)AuthorAgeFilesLines
* Make the ArgArray_Init() function visible to the rest of make.Hartmut Brandt2005-05-231-0/+1
| | | | | | | It will soon be needed for the .SHELL parsing code. Notes: svn path=/head/; revision=146543
* Get rid of global variables for argument vectors produced by brk_string()Hartmut Brandt2005-05-181-3/+16
| | | | | | | | | | | introduce a struct that holds all the information about an argument vector and pass that around. Author: Max Okumoto <okumoto@ucsd.edu> Obtained from: DragonFlyBSD Notes: svn path=/head/; revision=146345
* Move the Boolean and ReturnStatus stuff from sprite.h to util.h andHartmut Brandt2005-05-131-1/+1
| | | | | | | | | get rid of sprite.h. Obtained from: DragonFlyBSD Notes: svn path=/head/; revision=146177
* Constify the input argument to brk_string.Hartmut Brandt2005-03-071-1/+1
| | | | | | | | | Patch: 7.106 Submitted by: Max Okumoto <okumoto@ucsd.edu> Notes: svn path=/head/; revision=143253
* Convert several typedefs from beeing pointers to structs to be the structsHartmut Brandt2005-02-021-2/+3
| | | | | | | | | | itself. This will ease constification (think of what 'const Ptr foo' means if Ptr is a pointer to a struct). Submitted by: Max Okumoto <okumoto@ucsd.edu> Notes: svn path=/head/; revision=141133
* Clean up include files and file including. Split nonints.h into piecesHartmut Brandt2005-02-011-0/+66
that get included just where they are needed. All headers include the headers that they need to compile (just with an empty .c file). Sort includes alphabetically where apropriate and fix some duplicate commenting for struct Job, struct GNode and struct Shell by removing one version and inlining the comments into the structure declaration (the comments have been somewhat outdated). This patch does not contain functional changes (checked with md5). Submitted by: Max Okumoto <okumoto@ucsd.edu> Notes: svn path=/head/; revision=141104