You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
257 B
11 lines
257 B
#include "ngspice/cpdefs.h"
|
|
#include <string.h>
|
|
#include "hcomp.h"
|
|
|
|
int
|
|
hcomp(const void *a, const void *b)
|
|
{
|
|
struct comm **c1 = (struct comm **) a;
|
|
struct comm **c2 = (struct comm **) b;
|
|
return (strcmp((*c1)->co_comname, (*c2)->co_comname));
|
|
}
|