Esempio n. 1
0
int main (int argc, char *argv[])
{
char buffer[4]="test";
write (1, "Main called successfully\n",25); 

find_seek_place(buffer);

count_newlines();

print_remaining();
}
Esempio n. 2
0
void cleanup()
{
	/* Dump remaining passwords to the remaining file */
	for (int i = 0; i < count; i++) {
		if (hash_buff[i].r64[1] != 0)
			print_remaining(&hash_buff[i]);
	}

	fclose(found);
	fclose(remaining);
	free(hash_buff);
	free(array);
}
Esempio n. 3
0
int main(int argc, char *argv[])
{
	split_t	m;
	int	i;

	m.str = argv[1];
	m.next = NULL;


	for (i = 0; i < 1; i++) {
		match_and_split(&m, dictionary[i]);
	}

	print_remaining(&m);

}