File: searchpath.c

package info (click to toggle)
stringlist 0.2.1-1
  • links: PTS
  • area: main
  • in suites: slink
  • size: 456 kB
  • ctags: 96
  • sloc: sh: 4,710; ansic: 1,280; makefile: 89
file content (43 lines) | stat: -rw-r--r-- 660 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
#include "StringList.h"

void AppendPath() {
	/* This function will append items to the 
	 * end of the searchpath 
	 */

}

void UnAppendPath() {
	/* This function will remove items from the 
	 * end of the searchpath 
	 */

}

void UnPrependPath() {
	/* This function will remove items from the 
	 * beginning of the searchpath
	 */

}

void PrependPath() {
	/* This function will insert items into the 
	 * beginning of the searchpath 
	 */

}

void GetNumberOfMembersPath() {
	/* This function will tell you how many members are
	 * in the path
	 */

}

void ReturnNextItem() {
	/* This function returns the next item in the current
	 * searchpath
	 */

}