We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
const
1 parent 9d291a0 commit 221a057Copy full SHA for 221a057
data_structures/graphs/kruskal.c
@@ -41,7 +41,7 @@ struct Graph *createGraph(int V, int E)
41
*
42
* @param ptr Pointer to the graph structure to be deallocated.
43
*/
44
-void deleteGraph(struct Graph *graph)
+void deleteGraph(struct Graph *const graph)
45
{
46
if (graph == NULL)
47
0 commit comments