Changeset 785 in kBuild for trunk/src/fastdep
- Timestamp:
- Jan 24, 2007 10:21:56 PM (18 years ago)
- Location:
- trunk/src/fastdep
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/fastdep/Makefile
r7 r785 6 6 # Makefile for the Quick-and-Dirty dependency utility. (FastDep) 7 7 # 8 # Copyright (c) 1999-2002 knut st. osmundsen (bird @anduin.net)8 # Copyright (c) 1999-2002 knut st. osmundsen (bird-kBuild-spam@anduin.net) 9 9 # 10 10 # GPL -
trunk/src/fastdep/fastdep.c
r7 r785 3 3 * Fast dependents. (Fast = Quick and Dirty!) 4 4 * 5 * Copyright (c) 1999-2002 knut st. osmundsen (bird @anduin.net)5 * Copyright (c) 1999-2002 knut st. osmundsen (bird-kBuild-spam@anduin.net) 6 6 * 7 7 * GPL … … 1006 1006 "\n" 1007 1007 "Options and files could be mixed.\n" 1008 " copyright (c) 1999-2002 knut st. osmundsen (bird @anduin.net)\n",1008 " copyright (c) 1999-2002 knut st. osmundsen (bird-kBuild-spam@anduin.net)\n", 1009 1009 ODIN32_BUILD_NR, 1010 1010 pszDefaultDepFile … … 2396 2396 * @param pszS2 String 2 2397 2397 * @param cch Length to compare (relative to string 1) 2398 * @author knut st. osmundsen ([email protected])2399 2398 */ 2400 2399 int strnicmpwords(const char *pszS1, const char *pszS2, int cch) … … 3047 3046 * @returns Pointer to the first char after word. 3048 3047 * @param psz Where to start. 3049 * @author knut st. osmundsen ([email protected])3050 3048 */ 3051 3049 char *findEndOfWord(char *psz) … … 3071 3069 * @param psz Where to start. 3072 3070 * @param pszStart Where to stop. 3073 * @author knut st. osmundsen ([email protected])3074 3071 */ 3075 3072 char *findStartOfWord(const char *psz, const char *pszStart) … … 3117 3114 * @param psz Pointer to the string which is to be trimmed. 3118 3115 * @status completely implmented. 3119 * @author knut st. osmundsen ([email protected])3120 3116 */ 3121 3117 INLINE char *trim(char *psz) … … 3139 3135 * @param psz Pointer to the string which is to be right trimmed. 3140 3136 * @status completely implmented. 3141 * @author knut st. osmundsen ([email protected])3142 3137 */ 3143 3138 INLINE char *trimR(char *psz) … … 3159 3154 * @param psz Pointer to the string which is to be quote-trimmed. 3160 3155 * @status completely implmented. 3161 * @author knut st. osmundsen ([email protected])3162 3156 */ 3163 3157 INLINE char *trimQuotes(char *psz) … … 3183 3177 * @param pszOut Ouput (preprocessed) string. 3184 3178 * @param pszIn Input string. 3185 * @author knut st. osmundsen ([email protected])3186 3179 */ 3187 3180 char *PreProcessLine(char *pszOut, const char *pszIn)
Note:
See TracChangeset
for help on using the changeset viewer.