Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

strcmp.h (104B)


      1 #pragma once
      2 
      3 #ifndef STRCMP_H
      4 #define STRCMP_H
      5 
      6 int strcmp (const char *st1, const char *st2);
      7 
      8 #endif