File: forbidden

package info (click to toggle)
widelands 1%3A17-3
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 332,404 kB
  • sloc: cpp: 104,978; python: 3,073; ada: 855; sh: 435; makefile: 225
file content (32 lines) | stat: -rw-r--r-- 534 bytes parent folder | download | duplicates (2)
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
find_first_of("a")
find_last_of("a")
find("a")
rfind("a")
find_first_of("\n")
find_last_of("\n")
find("\n")
rfind("\n")
find_first_of("\t")
find_last_of("\t")
find("\t")
rfind("\t")
find_first_of("\\")
find_last_of("\\")
find("\\")
rfind("\\")
find_first_of("\"")
find_last_of("\"")
find("\"")
rfind("\"")
find_first_of("a", 1)
find_last_of("a", 1)
find("a", 1)
rfind("a", 1)
find_first_of('a')
find_first_of('\n')
find_first_of('\\')
find_first_of('a', 1)
find_last_of('a')
find_last_of('\n')
find_last_of('\\')
find_last_of('a', 1)