Files
leetcode/include/solution/1290.h
2025-07-14 19:23:17 +08:00

12 lines
181 B
C

#ifndef INC_1290_H
#define INC_1290_H
#ifdef __cplusplus
extern "C"
{
#endif
#include <ListNode.h>
int getDecimalValue(struct ListNode *head);
#ifdef __cplusplus
}
#endif
#endif