[ create a new paste ] login | about

malstrom

Name:
Email:
Site/Blog:
Location:
Default language:
Favorite languages:
About:

Saved pastes by malstrom:

C++, pasted on Jun 2:
1
2
3
4
5
#include <iostream>
#include <cctype>

bool wildcardMatch(const char* p, const char* s) {
    while (*p != '\0') {
...
view (44 lines, 15 lines of output)