Design Pattern Examples
Overview of object-oriented design patterns
State_RemoveComments.h
Go to the documentation of this file.
1
6
7
#pragma once
8
#ifndef __STATE_REMOVECOMMENTS_H__
9
#define __STATE_REMOVECOMMENTS_H__
10
11
#include <stdbool.h>
12
#include "
helpers/dynamicstring.h
"
13
14
25
bool
State_RemoveComments
(
const
char
* text,
DynamicString
* filteredText);
26
27
28
#endif
// __STATE_REMOVECOMMENTS_H__
29
State_RemoveComments
bool State_RemoveComments(const char *text, DynamicString *filteredText)
Entry point for callers to filter text. Removes C++-style line and block comments from the text.
Definition:
State_RemoveComments.c:745
dynamicstring.h
Declaration of the DynamicString structure and supporting functions to work with dynamic strings.
DynamicString
Represents a string that can be grown dynamically.
Definition:
dynamicstring.h:16
c
State_RemoveComments.h
Generated on Tue Aug 29 2023 19:47:44 for Design Pattern Examples by
1.9.6