mirror of
git://git.psyced.org/git/psyclpc
synced 2024-08-15 03:20:16 +00:00
10 lines
210 B
C
10 lines
210 B
C
#ifndef LPC_STRINGS_H_
|
|
#define LPC_STRINGS_H_ 1
|
|
|
|
/* 'where' argument values for trim() */
|
|
|
|
#define TRIM_LEFT 0x01
|
|
#define TRIM_RIGHT 0x02
|
|
#define TRIM_BOTH (TRIM_LEFT|TRIM_RIGHT)
|
|
|
|
#endif /* LPC_STRINGS_H_ */
|